-
Notifications
You must be signed in to change notification settings - Fork 834
Modern JS: don't use var in css-examples #163
Copy link
Copy link
Open
Labels
choreA routine task.A routine task.effort: mediumTask is a medium effort.Task is a medium effort.good first issueA good issue for newcomers to get started with.A good issue for newcomers to get started with.help wantedIf you know something about this, we would love your help!If you know something about this, we would love your help!
Metadata
Metadata
Assignees
Labels
choreA routine task.A routine task.effort: mediumTask is a medium effort.Task is a medium effort.good first issueA good issue for newcomers to get started with.A good issue for newcomers to get started with.help wantedIf you know something about this, we would love your help!If you know something about this, we would love your help!
Type
Projects
Status
No status
Quite a few examples in this repo extensively use
var.This is a bad practice; we have eliminated them from mdn/content (and other repos). We should do the same here: most will be simply replaced by
constandlet, although there may be a few more complex cases (wherevaris used inside a scope for a variable at a higher scope)