Difference between revisions of "JavaScript"
(11 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
My JavaScript notes | My JavaScript notes | ||
== ECMAScript == | |||
[https://www.ecma-international.org/publications/standards/Ecma-262.htm ECMA-262] standard | |||
[https://www.ecma-international.org/ecma-262/6.0/index.html ECMA 2015] or ECMA-262 6th Edition | |||
== JavaScript == | == JavaScript == | ||
JavaScript Date | |||
[https://www.toptal.com/software/definitive-guide-to-datetime-manipulation Definitive guide to datetime manipulation] | |||
[https://momentjs.com/ Moment] : Parse, validate, manipulate, and display dates and times in JavaScript. Available via npm. | |||
== npm goodies == | |||
[https://www.npmjs.com/package/chalk chalk] : Terminal string styling done right | |||
[https://www.npmjs.com/package/yargs Yargs] : Yargs helps you build interactive command line tools, by parsing arguments and generating an elegant user interface. | |||
[https://www.npmjs.com/package/moment moment] : A lightweight JavaScript date library for parsing, validating, manipulating, and formatting dates. | |||
== Useful Resources == | == Useful Resources == | ||
[https://github.com/getify/You-Dont-Know-JS/tree/2nd-ed You Don't Know JavaScript] is free book | |||
[https://eloquentjavascript.net/ Eloquent JavaScript] is a book about JavaScript, programming, and the wonders of the digital. You can read it online [https://eloquentjavascript.net/ here], or get your own [https://www.amazon.com/dp/1593279507/ paperback copy]. | [https://eloquentjavascript.net/ Eloquent JavaScript] is a book about JavaScript, programming, and the wonders of the digital. You can read it online [https://eloquentjavascript.net/ here], or get your own [https://www.amazon.com/dp/1593279507/ paperback copy]. | ||
Line 10: | Line 32: | ||
[https://dmitripavlutin.com/what-every-javascript-developer-should-know-about-unicode/ What every JavaScript developer should know about Unicode] | [https://dmitripavlutin.com/what-every-javascript-developer-should-know-about-unicode/ What every JavaScript developer should know about Unicode] | ||
[http://json.org/ JSON (JavaScript Object Notation)] | |||
Online [https://jsonformatter.org/ JSON] formatter | |||
[https://restfulapi.net/ '''REST API''' tutorial] '''RE'''presentational '''S'''tate '''T'''ransfer '''A'''pplication '''P'''rogramming '''I'''nterface | |||
Manage all of your organization's APIs in [https://www.getpostman.com/ Postman], with the industry's most complete API development environment. | |||
[https://httpstatuses.com/ HTTP Status Codes] | |||
[https://www.pixijs.com/ PixiJS] | |||
<center>[[Computing|To Computing]]</center> | <center>[[Computing|To Computing]]</center> |
Latest revision as of 16:22, 30 June 2020
My JavaScript notes
ECMAScript
ECMA-262 standard
ECMA 2015 or ECMA-262 6th Edition
JavaScript
JavaScript Date
Definitive guide to datetime manipulation
Moment : Parse, validate, manipulate, and display dates and times in JavaScript. Available via npm.
npm goodies
chalk : Terminal string styling done right
Yargs : Yargs helps you build interactive command line tools, by parsing arguments and generating an elegant user interface.
moment : A lightweight JavaScript date library for parsing, validating, manipulating, and formatting dates.
Useful Resources
You Don't Know JavaScript is free book
Eloquent JavaScript is a book about JavaScript, programming, and the wonders of the digital. You can read it online here, or get your own paperback copy.
What every JavaScript developer should know about Unicode
JSON (JavaScript Object Notation)
Online JSON formatter
REST API tutorial REpresentational State Transfer Application Programming Interface
Manage all of your organization's APIs in Postman, with the industry's most complete API development environment.