Misspelling fix, add colon. (#38169)

This commit is contained in:
David Lau
2020-02-06 00:46:44 -08:00
committed by GitHub
parent cccad94754
commit f3a386982a

View File

@ -7,8 +7,8 @@ forumTopicId: 301713
## Description ## Description
<section id='description'> <section id='description'>
Let's practice removimg items from an ES6 Set using the <code>delete</code> method. Let's practice removing items from an ES6 Set using the <code>delete</code> method.
First, create an ES6 Set First, create an ES6 Set:
<code>var set = new Set([1,2,3]);</code> <code>var set = new Set([1,2,3]);</code>
Now remove an item from your Set with the <code>delete</code> method. Now remove an item from your Set with the <code>delete</code> method.