为了账号安全,请及时绑定邮箱和手机立即绑定

map(),下面代码的输出结果是怎么得到的

map(),下面代码的输出结果是怎么得到的

momoyy123 2016-05-18 11:06:41
// Define the callback function. function threeChars(value, index, str) {    // Create a string that contains the previous, current,     // and next character.     return str.substring(index - 1, index + 2); } // Create a string. var word = "Thursday"; // Apply the map method to the string. // Each array element in the result contains a string that has the previous, current, and next character. // The commented out statement shows an alternative syntax. var result = [].map.call(word, threeChars); // var result = Array.prototype.map.call(word, threeChars);document.write(result); // Output: // Th,Thu,hur,urs,rsd,sda,day,ay
查看完整描述

目前暂无任何回答

  • 0 回答
  • 0 关注
  • 1315 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信