-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathscripts.js
225 lines (222 loc) · 5.3 KB
/
scripts.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
const items = [
{
title: 'Use === Comparison',
slug: 'use-===-comparison',
refs: [{
title: 'w3schools',
url: 'https://w3schools.com/'
}],
do: {
description: 'The === operator forces comparison of values and type.',
codes: [
'0 === "";',
'1 === "1";',
'1 === true;'
]
},
dont: {
description: 'The == comparison operator always converts (to matching types) before comparison.',
codes: [
'0 == "";',
'1 == "1";',
'1 == true;'
]
}
},
{
title: "Don't Use new Object()",
slug: "dont-use-new-object",
refs: [{
title: 'w3schools',
url: 'https://w3schools.com/'
}],
do: {
codes: [
'var x1 = {};',
'var x2 = "";',
'var x3 = 0;',
'var x4 = false;',
'var x5 = [];',
'var x6 = /()/;',
'var x7 = function(){};',
]
},
dont: {
codes: [
'var x1 = new Object();',
'var x2 = new String("");',
'var x3 = new Number(0);',
'var x4 = new Boolean(false);',
'var x5 = new Array();',
'var x6 = new RegExp();',
'var x7 = new Function();',
]
}
},
{
title: 'Declare Variables Outside of the For Statement',
slug: 'declare-variables-outside-of-the-for-statement',
refs: [{
title: 'tutsplus',
url: 'https://code.tutsplus.com/tutorials/24-javascript-best-practices-for-beginners--net-5399'
}],
do: {
description: `Notice how we must determine the length of the array for each iteration, and how we traverse the dom to find the "container" element each time -- highly inefficient!`,
codes: [
`var container = document.getElementById('container');
for(var i = 0, len = someArray.length; i < len; i++) {
container.innerHtml += 'my number: ' + i;
console.log(i);
}`
]
},
dont: {
description: `When executing lengthy "for" statements, don't make the engine work any harder than it must`,
codes: [
`for(var i = 0; i < someArray.length; i++) {
var container = document.getElementById('container');
container.innerHtml += 'my number: ' + i;
console.log(i);
}`
]
}
},
{
title: 'End Your Switches with Defaults',
slug: 'end-your-switches-with-defaults',
description: 'Always end your switch statements with a default. Even if you think there is no need for it.',
refs: [{
title: 'w3schools',
url: 'https://w3schools.com/'
}],
do: {
codes: [
`switch (new Date().getDay()) {
case 0:
day = "Sunday";
break;
case 1:
day = "Monday";
break;
case 2:
day = "Tuesday";
break;
default:
day = "Unknown";
}`
]
},
dont: {
codes: [
`switch (new Date().getDay()) {
case 0:
day = "Sunday";
break;
case 1:
day = "Monday";
break;
case 2:
day = "Tuesday";
break;
}`
]
}
},
{
title: 'Use Array push instead of direct assignment to add items to an array.',
slug: 'use-array-push-instead-of-direct-assignment',
refs: [{
title: 'airbnb',
url: 'https://github.com/airbnb/javascript'
}],
do: {
codes: [
`const someStack = [];
someStack.push('abracadabra');`
]
},
dont: {
codes: [
`const someStack = [];
someStack[someStack.length] = 'abracadabra';`
]
}
},
{
title: 'Use Template Literals',
slug: 'use-template-literals',
refs: [{
title: 'MDN Web Docs',
url: 'https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals'
}],
do: {
description: 'Use template literals for string interpolation and concatenation.',
codes: [
'const name = "John";',
'const age = 30;',
'const sentence = `My name is ${name} and I am ${age} years old.`;',
]
},
dont: {
description: 'Avoid using concatenation with the + operator.',
codes: [
'const name = "John";',
'const age = 30;',
'const sentence = "My name is " + name + " and I am " + age + " years old.";',
]
}
},
{
title: 'Use Arrow Functions',
slug: 'use-arrow-functions',
refs: [{
title: 'MDN Web Docs',
url: 'https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions'
}],
do: {
description: 'Use arrow functions for concise and readable function expressions.',
codes: [
'const add = (a, b) => a + b;',
]
},
dont: {
description: 'Avoid using verbose function expressions.',
codes: [
'const add = function(a, b) {',
' return a + b;',
'};',
]
}
},
{
title: 'Use Const and Let',
slug: 'use-const-and-let',
refs: [{
title: 'MDN Web Docs',
url: 'https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/const'
}],
do: {
description: 'Use const and let for variable declarations.',
codes: [
'const PI = 3.14;',
'let name = "John";',
]
},
dont: {
description: 'Avoid using var for variable declarations.',
codes: [
'var PI = 3.14;',
'var name = "John";',
]
}
}
];
(function () {
"use strict";
const list = new Vue({
el: '#list',
data: {
items
}
});
})();