Update luhnCheck.md

This commit is contained in:
Angelos Chalaris
2018-01-04 11:23:07 +02:00
committed by GitHub
parent 6e296ca45d
commit 0e79b52ff6

View File

@ -20,7 +20,6 @@ const luhnCheck = num => {
```js
luhnCheck("4485275742308327"); // true
luhnCheck(4485275742308327); // true
luhnCheck(6011329933655299); // true
luhnCheck(123456789); // false
```