I did the following code to print the list within the array, however, it didn’t work, anyone have any ideas,
const courses = [“Blockchain & Bitcoin 101”, “Ethereum 101”, “JavaScript for Blockchain Developers”, “12-Week Bootcamp”, “Bitcoin Programming 101”];
for (i = 0; i < courses.length; i++){
console.log(courses[i]);
}
Although, now when I look at the answer sheet, it looks a lot less complicated,
I am not sure what the in does