Links

JavaScript

Resources

Type
MDN
Array
MDN
Date
MDN
Object
MDN
String
MDN
JSON
MDN
Set
MDN
RegExp
MDN
Destructuring Assignment
MDN
const
MDN
let
MDN
export
MDN

strict mode

Begin files with:
'use strict';

Arrow functions: () => {}

const a = (param1, param2) => {
return param1 + param2;
}
const b = (param1, param2) => param1 + param2;

String

UTF Support

window

window.location.hash

console.log(window.location.hash);
Results:
#array
Results will always be prefixed with #

scroll

Scroll to a part of the screen.
window.location.hash = '#object'

trailing commas

Simple Assert

input = "a b c d e";
main(input) {
...
}
assert(expected, input) {
console.log(input);
actual = main(input);
result = expected === actual;
console.log(result);
if (!result) {
console.log(actual);
console.log(expected);
}
}
// Case 1
assert(expected, input);
// Case 2
assert(expected2, input2);
// Case 3
assert(expected3, input3);
Warning: querystring.stringify does not stringify deeply nested objects.

Classes

class Animal {
constructor() {
}
}
class Cat extends Animal {
constructor(props) {
super(props)
}
}

Flow vs TypeScript

Flow

ESLINT

Alternatives

Frameworks

ORM

Last modified 3yr ago