javascript Programming Quiz: Using Sets

http://img.mukewang.com/599ce7fd00012f3c11270570.jpg

/*
 * Programming Quiz: Using Sets (3-1)
 *
 * Create a Set object and store it in a variable named `myFavoriteFlavors`. Add the following strings to the set:
 *     - chocolate chip
 *     - cookies and cream
 *     - strawberry
 *     - vanilla
 *
 * Then use the `.delete()` method to remove "strawberry" from the set.
 */


无无法师
浏览 3142回答 1
1回答

千秋此意

let myFavoriteFlavors = new Set(); myFavoriteFlavors.add('chocolate chip'); myFavoriteFlavors.add('cookies and cream'); myFavoriteFlavors.add('strawberry'); myFavoriteFlavors.add('vanilla'); myFavoriteFlavors.delete('strawberry'); console.log(myFavoriteFlavors);
打开App,查看更多内容
随时随地看视频慕课网APP