Intermediate JavaScript 1 – Arrays and Functions
Arrays JavaScript arrays are basically containers for stuff. We can put anything we want in a JavaScript array. let notifications = [ ‘John Wayne liked your post’, ‘Ed Sullivan mentioned you in a post’, ‘You have a new message from Al Capone’ ]; Our array of notifications contains three strings. Code Dissection let The let … Read more