Version | Link |
---|---|
ECMAScript 2015 - ES2015 - ES6 | All Features List |
ECMAScript 2016 - ES2016 - ES7 | All Features List |
ECMAScript 2017 - ES2017 - "ES8" | All Features List |
ECMAScript 2018 - ES2018 - "ES9" | All Features List |
ECMAScript 2019 - ES2019 - "ES10" | All Features List |
ECMAScript 2020 - ES2020 - "ES11" | All Features List |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This implementation does not work with Symbols, BigInts | |
function stringify(data) { | |
if (data === undefined) | |
return undefined | |
if (data === null) | |
return 'null' | |
if (data.toString() === "NaN") | |
return 'null' | |
if (data === Infinity) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
JS
- https://github.com/leonardomso/33-js-concepts
- https://github.com/denysdovhan/wtfjs
- https://github.com/wesbos/JavaScript30
- https://github.com/yangshun/front-end-interview-handbook
- https://github.com/ryanmcdermott/clean-code-javascript
- https://github.com/DrkSephy/es6-cheatsheet
- https://github.com/lydiahallie/javascript-questions
- https://github.com/nefe/You-Dont-Need-jQuery
- Collection of element
- configurable
- enumerable
- writable
- value
- get & set function
References
NewerOlder