We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad5156b commit e5d0c12Copy full SHA for e5d0c12
snippets/snippets.json
@@ -73,12 +73,12 @@
73
},
74
"forOf": {
75
"prefix": "fof",
76
- "body": "for(let ${1:item} of ${2:object}) {\n\t${0}\n}",
+ "body": "for (const ${1:item} of ${2:object}) {\n\t${0}\n}",
77
"description": "Iterating over property names of iterable objects"
78
79
"forIn": {
80
"prefix": "fin",
81
- "body": "for(let ${1:item} in ${2:object}) {\n\t${0}\n}",
+ "body": "for (const ${1:item} in ${2:object}) {\n\t${0}\n}",
82
"description": "Iterating over property values of iterable objects"
83
84
"anonymousFunction": {
0 commit comments