SlideShare a Scribd company logo
Javascript3
1.
Javascript3
Javascript3
Javascript3
var a= b
new
var a = new String(“text”);
var a = new String(“text”);


• new

• new
        String
String



new
new
this
Javascript3
function test(x,y){
      this.x = x;
      this.y = y;
  }

  var a = new test(1,2);


new test(1,2)       test


new
new                        this
this
Javascript3
var a= obj;

        a obj
this
this=
Javascript3
Javascript3
Javascript3
Javascript3
•
•   function(){
    …
    }



•
•
var test = function(x,y){
  this.x = x;
  this.y = y;
};

function test(x,y){
 this.x = x;
 this.y = y;
}
Javascript3
Javascript3
var test = function(){
   this.a = “abc”;
};
test.text = “          ”;
test.text2 = “              ”;
Javascript3
new
new
test
var test = function(){
   this.a = "abc";
};
test.text = "          ";
var a = new test();
console.log(a.a);
console.log(text.text);
console.log(a.text);
Javascript3
text
this
text
new
Javascript3
Javascript3
Javascript3
prototype
prototype
prototype
Javascript3
constructor
prototype
var test = function(){
	

 this.a = "abc";
};

//test.prototype
test.prototype = {
	

 constructor:function(){
       this.a= "abc"
    },
    __proto__:Object //IE
};
Javascript3
__proto__
                 prototype




IE   __proto__
prototype


new


      prototype
Javascript3
Javascript3
Javascript3
Javascript3
a.text = "1234"
   a text
2.
Javascript3
Javascript3
var a = {
  abc:"text"
};
{}
new
Javascript3
prototype


new
var test = {
  test : "text"
};
var Creator = function(){};
Creator.prototype = test;
var a = new Creator();
console.log(a.test);//text
CSS   cascade
new
jQuery
•                           new


•                            prototype


•   prototype


•   prototype

•
                prototype

More Related Content

DOCX
PDF
Java script object model
PDF
Swift で JavaScript 始めませんか? #iOSDC
PPT
Java 8 Streams
PDF
Introduction to Underscore.js
PPTX
Javascript this keyword
PPTX
FunctionalJS - George Shevtsov
PDF
DUTDIP - Don't Use This Dependency Injection Pattern
Java script object model
Swift で JavaScript 始めませんか? #iOSDC
Java 8 Streams
Introduction to Underscore.js
Javascript this keyword
FunctionalJS - George Shevtsov
DUTDIP - Don't Use This Dependency Injection Pattern

What's hot (20)

PDF
JavaScript OOP Pattern
PPTX
Introduction to underscore.js
PPTX
Object Oriented JavaScript
PDF
ActiveRecord Query Interface
PDF
Groovyノススメ
PPTX
Code craftsmanship saturdays second session
PDF
Real World Generics In Swift
PDF
Introduction to JQ
PPT
A Discussion on Automatic Programming
PDF
Streams or Loops? Java 8 Stream API by Niki Petkov - Proxiad Bulgaria
PPTX
DOC
An example of bubble sort written in c
PPTX
Closure
PPT
Javascript Design Patterns
PDF
Tech Talk #4 : RxJava and Using RxJava in MVP - Dương Văn Tới
KEY
Underscore.js
ODP
Concurrency on the JVM
PDF
JavaScript Execution Context
PPTX
Lesson11
PDF
jq: JSON - Like a Boss
JavaScript OOP Pattern
Introduction to underscore.js
Object Oriented JavaScript
ActiveRecord Query Interface
Groovyノススメ
Code craftsmanship saturdays second session
Real World Generics In Swift
Introduction to JQ
A Discussion on Automatic Programming
Streams or Loops? Java 8 Stream API by Niki Petkov - Proxiad Bulgaria
An example of bubble sort written in c
Closure
Javascript Design Patterns
Tech Talk #4 : RxJava and Using RxJava in MVP - Dương Văn Tới
Underscore.js
Concurrency on the JVM
JavaScript Execution Context
Lesson11
jq: JSON - Like a Boss
Ad

Viewers also liked (20)

PPT
Що таке медичний переклад
PPTX
Protección de las mujeres contra la violencia de genero en la argentina
PPT
Abc jak dziala instalacja z pompa ciepla
PPTX
Protección de las mujeres contra la violencia de genero en la argentina
PPSX
Hemsö fästning
PDF
Bahan sosialisas kualitas aseti
PDF
Waitabu eco tourism
PDF
Papi 2008 buku 2
PPSX
Crisis
PPT
Abc ile kosztuje ogrzewanie pompa ciepla
PPTX
Презентація бюро перекладів Glebov
PPSX
Manu
PPT
FCPD: Fibro Calculus Pancreatic Diabetes
PPT
Abc czy oplaca sie zainwestowac w kolektory sloneczne
PPTX
Protección de las mujeres contra la violencia de genero en la argentina
PPTX
Shahara_Wooten_Final_Presentation
KEY
Javascript2
PPT
Abc czy potrzebna mi wentylacja mechaniczna z odzyskiem ciepla
PPTX
Barriers to insulin therapy
Що таке медичний переклад
Protección de las mujeres contra la violencia de genero en la argentina
Abc jak dziala instalacja z pompa ciepla
Protección de las mujeres contra la violencia de genero en la argentina
Hemsö fästning
Bahan sosialisas kualitas aseti
Waitabu eco tourism
Papi 2008 buku 2
Crisis
Abc ile kosztuje ogrzewanie pompa ciepla
Презентація бюро перекладів Glebov
Manu
FCPD: Fibro Calculus Pancreatic Diabetes
Abc czy oplaca sie zainwestowac w kolektory sloneczne
Protección de las mujeres contra la violencia de genero en la argentina
Shahara_Wooten_Final_Presentation
Javascript2
Abc czy potrzebna mi wentylacja mechaniczna z odzyskiem ciepla
Barriers to insulin therapy
Ad

Similar to Javascript3 (20)

PPTX
javascript prototype
PDF
Demystifying Prototypes
KEY
Inheritance patterns
PDF
JavaScript Survival Guide
PDF
Week 06 Modular Javascript_Brandon, S. H. Wu
PDF
The many facets of code reuse in JavaScript
PPT
Advanced JavaScript
PDF
Professional JavaScript Development - Creating Reusable Code
PDF
JavaScript: enter the dragon
PDF
Js objects
PDF
運用Closure Compiler 打造高品質的JavaScript
PDF
JavaScript Primer
PPTX
Ian 20150116 java script oop
KEY
第7回みゆっき☆Think 本気で学ぶ JavaScript
KEY
みゆっき☆Think#7 「本気で学ぶJavascript」
PDF
Say It With Javascript
PPT
Advanced Javascript
PPT
Advanced Javascript
PPT
Advanced Javascript
javascript prototype
Demystifying Prototypes
Inheritance patterns
JavaScript Survival Guide
Week 06 Modular Javascript_Brandon, S. H. Wu
The many facets of code reuse in JavaScript
Advanced JavaScript
Professional JavaScript Development - Creating Reusable Code
JavaScript: enter the dragon
Js objects
運用Closure Compiler 打造高品質的JavaScript
JavaScript Primer
Ian 20150116 java script oop
第7回みゆっき☆Think 本気で学ぶ JavaScript
みゆっき☆Think#7 「本気で学ぶJavascript」
Say It With Javascript
Advanced Javascript
Advanced Javascript
Advanced Javascript

Recently uploaded (20)

PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
cuic standard and advanced reporting.pdf
PDF
Network Security Unit 5.pdf for BCA BBA.
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PDF
Encapsulation theory and applications.pdf
PDF
KodekX | Application Modernization Development
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Spectral efficient network and resource selection model in 5G networks
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
Reach Out and Touch Someone: Haptics and Empathic Computing
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
cuic standard and advanced reporting.pdf
Network Security Unit 5.pdf for BCA BBA.
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
The AUB Centre for AI in Media Proposal.docx
Dropbox Q2 2025 Financial Results & Investor Presentation
Review of recent advances in non-invasive hemoglobin estimation
MIND Revenue Release Quarter 2 2025 Press Release
Encapsulation theory and applications.pdf
KodekX | Application Modernization Development
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Diabetes mellitus diagnosis method based random forest with bat algorithm
Spectral efficient network and resource selection model in 5G networks
“AI and Expert System Decision Support & Business Intelligence Systems”
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Mobile App Security Testing_ A Comprehensive Guide.pdf

Javascript3

Editor's Notes