From 06cd4cbbc74f77f4ba2510dab8de05b0b667d547 Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Sun, 31 Dec 2017 19:42:21 +0200 Subject: [PATCH] Update isArmstrongNumber.md --- snippets/isArmstrongNumber.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/isArmstrongNumber.md b/snippets/isArmstrongNumber.md index effb58e20..8f8ae8ed3 100644 --- a/snippets/isArmstrongNumber.md +++ b/snippets/isArmstrongNumber.md @@ -2,7 +2,7 @@ Checks if the given number is an Armstrong number or not. -Convert the given number into an array of digits. Use the exponent `**` operator 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`. +Convert the given number into an array of digits. Use the exponent operator (`**`) 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 =>