-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathReferences.txt
82 lines (61 loc) · 2.24 KB
/
References.txt
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
This contains references information for anything I needed.
// ECMAScript Language Specification
#ES5 #ECMA-262 5.1 Edition
http://www.ecma-international.org/ecma-262/5.1/
#ES6 #ECMA-262 6th Edition
http://www.ecma-international.org/ecma-262/6.0/
#EXMAScript 6 - New Features: Overview & Comparison
http://es6-features.org/#Constants
// DOM MDN reference
When writing code for the Web with JavaScript, there are a great many APIs available.
Below is a list of all the interfaces (that is, types of objects)
that you may be able to use while developing your Web app or site.
#WebAPI
https://developer.mozilla.org/en-US/docs/Web/API
#Document
It include about series of getElement* methods
https://developer.mozilla.org/en-US/docs/Web/API/Document
#EventTarget
It include about EventTarget.addEventListener()
https://developer.mozilla.org/en-US/docs/Web/API/EventTarget
#Element
It include about series of getElement* methods on certain Element
and include attributes, className so on (related to control an element)
https://developer.mozilla.org/en-US/docs/Web/API/Element
#Regular Expressions Mozilla
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions
#Regular Expression Explain
https://regexone.com/
#Regular Expression Test Site
https://regexr.com/
#Regular Expression Display
https://regexper.com/#%2F%5B%5E0-9%5D%2Fg
// Other references
#HTML, #HTML5, #CSS, #CSS3, #Javascript, #jQuery etc
especially RegEx in JAVASCRIPT section
http://www.florakid.com/florakid_lib/index.html
#NHN Javascript development guide
https://github.com/nhnent/fe.javascript/wiki
#Air bnb coding convention
https://github.com/airbnb/javascript
#Google coding convention
https://google.github.io/styleguide/jsguide.html
#ESLint
https://github.com/eslint/eslint
#attachEvent
http://help.dottoro.com/ljinxrmt.php
#global #node_module #location
// type 'node -h' in macOS terminal then the directory path shown up
// /usr/local/lib/node_modules/npm
#dinosaurs #webpack #babel #node #npm
https://march23hare.github.io/2017/11/30/tr-modern-javascript-explained-for-dinosaurs/
// Git Guide
#Git#Git Guide
https://backlog.com/git-tutorial/kr/
#Git
https://git-scm.com/
#Git guide
https://git-scm.com/book/ko/v2
// For Short Coding
#JS Fiddle
https://jsfiddle.net/