DEV Community

Discussion on: .includes For Noobs

Collapse
 
chenge profile image
chenge

Add js after 3 symbols to color.

const morals = ["honor", "courage", "justice", "yourself"];

morals.includes("courage"); 
// true
morals.includes("yourself"); 
// true
morals.includes("funny"); 
// false
Collapse
 
bananabrann profile image
Lee

Oh hey, thank you so much! I went ahead and updated it.