JavaScript is a scripting language for the Internet! Used by millions of web pages to improve design, validate forms, detect browsers, create cookies, and more.
Now we will introduce a summary of the knowledge points that need to be learned to learn JavaScript.
1. Clarify the basic purpose of learning javascript.
To master the basic concepts, syntax, loops, functions, events, etc. of JavaScript.
var o = { name: 'Jack', age: 20, city: 'Beijing' }; for (var key in o) { alert(key); // 'name', 'age', 'city' }
2. Understand the basic concepts of javascript
JavaScript a Literal scripting language is a dynamically typed, weakly typed, prototype-based language with built-in support for types. Its interpreter is called the JavaScript engine, which is part of the browser and is widely used in client-side scripting languages. It was first used on HTML (an application under Standard Universal Markup Language) web pages to add dynamic functions to HTML web pages. .
3. Basic syntax learning and mastery of javascript
4. Mastering common JavaScript events
http://www. php.cn/code/873.html
5. Do some small examples to become familiar with JavaScript
//m.sbmmt.com/course/169. html
The above is the detailed content of JavaScript basic knowledge points learning summary. For more information, please follow other related articles on the PHP Chinese website!