app.js
let secretMessage = ['Learning', 'is', 'not', 'about', 'what', 'you', 'get', 'easily', 'the', 'first', 'time,', 'it', 'is', 'about', 'what', 'you', 'can', 'figure', 'out.', '-2015,', 'Chris', 'Pine,', 'Learn', 'JavaScript'];
//console.log(secretMessage.length); prints 24
//
let last = secretMessage.pop();
//console.log(secretMessage.length); prints 23
//Exercise 1 2
//
let addString = secretMessage.push('to', 'Program');
//console.log(secretMessage.length); prints 25
This file has been truncated. show original