File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -51,16 +51,16 @@ Below is a list of all available snippets and the triggers of each one. The **
5151| ` fin→ ` | for ... in loop ` for(let item in object) {} ` |
5252| ` anfn→ ` | creates an anonymous function ` (params) => {} ` |
5353| ` nfn→ ` | creates a named function ` const add = (params) => {} ` |
54- | ` dob→ ` | desctucting object syntax ` const {rename} = fs ` |
55- | ` dar→ ` | desctucting array syntax ` const [first, second] = [1,2] ` |
54+ | ` dob→ ` | destructing object syntax ` const {rename} = fs ` |
55+ | ` dar→ ` | destructing array syntax ` const [first, second] = [1,2] ` |
5656| ` sti→ ` | set interval helper method ` setInterval(() => {}); ` |
5757| ` sto→ ` | set timeout helper method ` setTimeout(() => {}); ` |
5858| ` prom→ ` | creates a new Promise ` return new Promise((resolve, reject) => {}); ` |
5959
6060### Console methods
6161| Trigger | Content |
6262| -------: | ------- |
63- | ` cas→ ` | console allert method ` console.assert(expression, object) ` |
63+ | ` cas→ ` | console alert method ` console.assert(expression, object) ` |
6464| ` ccl→ ` | console clear ` console.clear() ` |
6565| ` cco→ ` | console count ` console.count(label) ` |
6666| ` cdi→ ` | console dir ` console.dir ` |
You can’t perform that action at this time.
0 commit comments