在 JavaScript 中检查双数


双数

如果一个自然数中仅包含两个不同的数字,则我们称其为“双数”。例如,23、35、100、12121 是双数,而 123 和 9980 不是双数。

问题

我们需要编写一个 JavaScript 函数,该函数接收一个数字,如果它是一个双数,则返回 true,否则返回 false。

示例

以下是代码 −

 现场演示

const num = 121212;
const isDoubleTon = (num = 1) => {
   const str = String(num);
   const map = {};
   for(let i = 0; i < str.length; i++){
      const el = str[i];
      if(!map.hasOwnProperty(el)){
         map[el] = true;
      };
   };
   const props = Object.keys(map).length;
   return props === 2;
};
console.log(isDoubleTon(num));

输出

以下是控制台输出 −

true

更新于: 17-Apr-2021

233 浏览量

开启您的 事业

完成课程即可获得认证

开始
广告