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.
2 parents 8d01771 + e5d0c12 commit c0ce8ffCopy full SHA for c0ce8ff
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