June 2014
Intermediate to advanced
696 pages
38h 52m
English
Often you will need to check whether an array contains a certain item. You can do this by using the indexOf() method. If the code does not find the item in the list, it returns a -1. The following function writes a message to the console if an item is in the week array:
function message(day){ var week = ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"]; if (week.indexOf(day) != -1){ console.log("Happy " + day); }}
Read now
Unlock full access