对数字的每一位数字求平方 - JavaScript

javascriptweb developmentfront end technologyobject oriented programming

我们需要编写一个 JavaScript 函数,该函数接受一个数字并返回一个新数字,其中原始数字的所有数字都进行了平方并连接起来

例如:如果数字是 −

9119

那么输出应该是 −

811181

因为 9^2 是 81 而 1^2 是 1。

示例

以下是代码 −

const num = 9119;
const squared = num => {
   const numStr = String(num);
   let res = '';
   for(let i = 0; i < numStr.length; i++){
      const square = Math.pow(+numStr[i], 2);
      res += square;
   };
   return res;
};
console.log(squared(num));

输出

这将在控制台中产生以下输出 −

811181

相关文章