我们需要编写一个以数字作为第一个也是唯一的参数的JavaScript函数。然后,该函数应将数字的每个数字平方,将其附加并产生新的数字。
例如-
如果输入号码是-
const num = 12349;
那么输出应该是-
const output = 1491681;
因为'1'+'4'+'9'+'16'+'81'= 1491681
为此的代码将是-
const num = 12349; const squareEvery = (num = 1) => { let res = '' const numStr = String(num); const numArr = numStr.split(''); numArr.forEach(digit => { const square = (+digit) * (+digit); res += square; }); return +res; }; console.log(squareEvery(num));输出结果
控制台中的输出将是-
1491681