Fixed missing spaces in comment

pull/407/head
Ponttablazat 4 months ago committed by GitHub
parent 8b41cd49c3
commit 7e68c5af93
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -590,7 +590,7 @@ const arr = Array() // creates an an empty array
console.log(arr)
const eightXvalues = Array(8).fill('X') // it creates eight element values filled with 'X'
console.log(eightXvalues) // ['X', 'X','X','X','X','X','X','X']
console.log(eightXvalues) // ['X', 'X', 'X', 'X', 'X', 'X', 'X', 'X']
const eight0values = Array(8).fill(0) // it creates eight element values filled with '0'
console.log(eight0values) // [0, 0, 0, 0, 0, 0, 0, 0]

Loading…
Cancel
Save