From e9815e6c2bfe6dbb49a8cfa9d47cd96ada0dda3a Mon Sep 17 00:00:00 2001 From: Arjun Mahishi Date: Wed, 20 Dec 2017 10:11:03 +0530 Subject: [PATCH] Added space after arrow --- snippets/isArmstrongNumber.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/snippets/isArmstrongNumber.md b/snippets/isArmstrongNumber.md index d9a96be1e..4925f3dc8 100644 --- a/snippets/isArmstrongNumber.md +++ b/snippets/isArmstrongNumber.md @@ -5,13 +5,13 @@ Checks if the given number is an armstrong number or not. Convert the given number into array of digits. Use `Math.pow()` to get the appropriate power for each digit and sum them up. If the sum is equal to the number itself, return `true` otherwise `false`. ```js -const isArmstrongNumber = digits =>{ +const isArmstrongNumber = digits => { let total = 0, arr = (digits+"").split(""); - arr.map(d =>total += Math.pow(parseInt(d), arr.length)) + arr.map(d => total += Math.pow(parseInt(d), arr.length)) if(total === digits) return true; return false; } // isArmstrongNumber(1634) -> true // isArmstrongNumber(371) -> true // isArmstrongNumber(56) -> false -``` \ No newline at end of file +```