文件名称:javascript-coding-challenges:初学者JavaScript编码挑战
文件大小:39KB
文件格式:ZIP
更新时间:2024-04-29 14:58:23
javascript codewars-solutions javascript-challenges
初学者JavaScript编码挑战 3或5的倍数 如果我们列出所有低于10的自然数,这些自然数是3或5的倍数,则得到3、5、6和9。这些倍数的总和为23。完成求解,使其返回3的所有倍数的总和。或低于传入的数字5。 注意:如果该数字是3和5的倍数,则仅对其计数一次。 另外,如果数字为负数,则返回0。 const solution = number => { // Your solution } ; console . log ( solution ( 0 ) ) ; // 0 console . log ( solution ( - 15 ) ) ; // 0 console . log ( solution ( 10 ) ) ; // 23 console . log ( solution ( 20 ) ) ; // 78 console . log ( solution
【文件预览】:
javascript-coding-challenges-master
----.gitignore(231B)
----README.md(23KB)
----images()
--------logo-js.png(33KB)