We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 201d661 commit 8c27f51Copy full SHA for 8c27f51
js/index.js
@@ -1,7 +1,9 @@
1
'use strict'
2
3
-const pokemonsNumber = Array.from(Array(251).keys())
4
- .map(number => String(number + 1).padStart(3, '0'))
+const pokemonsNumber = Array
+ .from(Array(251).keys())
5
+ .map(number => String(number + 1)
6
+ .padStart(3, '0'))
7
8
let loaded = 0
9
const total = pokemonsNumber.length
0 commit comments