分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 软件开发

js--codewars--Write Number in Expanded Form—filters、map、reduce、forEach

发布时间:2023-09-06 01:47责任编辑:熊小新关键词:js

问题描述:

you will be given a number and you will need to return it as a string in Expanded Form. For example:

expandedForm(12); // Should return ‘10 + 2‘expandedForm(42); // Should return ‘40 + 2‘expandedForm(70304); // Should return ‘70000 + 300 + 4‘

NOTE: All numbers will be whole numbers greater than 0.

我的答案:

 1 function expandedForm(num) { 2 ??// Your code here 3 ??var j=0; 4 ??var str=num.toString().split(""); 5 ??var result=[]; 6 ??for(var i=str.length-1;i>=0;i--){ 7 ????str[i]=str[i]*Math.pow(10,j); 8 ????j++; ????9 ????if(str[i]){10 ??????result=result.concat(str[i]);11 ????}12 ??}13 ???14 ??return result.reverse().join(‘ + ‘);15 }

优秀答案:

1 const expandedForm = n => n.toString()2 ????????????????????????????.split("")3 ????????????????????????????.reverse()4 ????????????????????????????.map( (a, i) => a * Math.pow(10, i))5 ????????????????????????????.filter(a => a > 0)6 ????????????????????????????.reverse()7 ????????????????????????????.join(" + ");

总结:优秀答案同自己的思路一样,但是优秀答案用到了数组的方法filter、map。

filter,map,forEach,reduce都不会改变原数组。

数组的方法作用
遍历数组forEach()数组的每一个元素都执行一次回调函数
filter()检测数值元素,并返回符合条件所有元素的数组。
map()通过指定函数处理数组的每个元素,并返回处理后的数组。
reduce()将数组元素计算为一个值(从左到右)

1,forEach遍历数组

[ ].forEach( function ( value, index, array ) {  //value:遍历的数组内容, index:对应数组索引, Array:数组本身

  // code something

},thisValue);

(1)与for的比较:

for 是循环的基础语法,可以有 for...infoo...of,for(let i = 0; i < len; i++) 等。在for循环中可以使用 continuebreak 来控制循环。

forEach 可以当做是for(let i = 0; i < len; i++)的简写,但是不能完成 i + n 这种循环,同时也不支持 continue和 break,只能通过 return 来控制循环。另外,使用forEach的话,是不能退出循环本身的;forEach对于稀疏矩阵处理比较好,不会处理为空的数组。

(2)与map的比较
https://www.cnblogs.com/liuruyi/p/6483526.html

共同点:

    1.都是循环遍历数组中的每一项。

    2.forEach() 和 map() 里面每一次执行匿名函数都支持3个参数:数组中的当前项item,当前项的索引index,原始数组input。

    3.匿名函数中的this都是指Window。

    4.只能遍历数组。

不同点:

forEach()没有返回值

map()有返回值

2,map()

[ ].map(function(currentValue,index,arr), thisValue) ?//返回新数组,数组中的元素为原始数组调用函数处理后的值

3,reduce()

[ ]. reduce( function ( total, currentValue, currentIndex, arr), initialValue);  // 返回一个值

4,filter()

[ ] . filter ( function ( currentValue, index, arr), thisValue); // 创建一个新数组,新数组中的元素是通过检查指定数组中符合条件的所有元素。

 

js--codewars--Write Number in Expanded Form—filters、map、reduce、forEach

原文地址:https://www.cnblogs.com/hiluna/p/8709329.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved