array 5b0 5d

Solutions on MaxInterview for array 5b0 5d by the best coders in the world

showing results for - "array 5b0 5d"
Juan
13 Nov 2016
1let words = [
2   'p',
3   'l',
4   'o'
5];
6console.log(words[0])
7//always prints the first number in the array
8//output will be 'p'
9//if we wrote 1 instead of 0 it would print out 'l'