小写数字转为周几

function intToDays(str) {
      str = str + '';
      var idxs = ['', '周一', '周二', '周三', '周四', '周五', '周六', '周日'];
      return str.replace(/([1-9]|0+)/g, function ($, $1, idx, full) {
        return idxs[$];
      });
    };
intToDays('157') // 周一周五周日