JavaScript prototype ES6 notation

Source: Internet
Author: User

Class point{

 Constructor(xY){This. x= xthis.y = Y;  tostring ({return " (' + this.x Span class= "token operator" >+ + this.y + ") '              /span>            

}

定义“类”的方法的时候,前面不需要加上function这个关键字,直接把函数定义放进去了就可以了。另外,方法之间不需要逗号分隔,加了会报错,类的方法都是写入在phototype中的,
ClassBar{Dostuff() {console.  Log(' stuff '); }}var b = new Bar(); b.  Dostuff() //"stuff" invokes the method of the class and uses the command directly against the class new , exactly as the constructor uses.




ClassPoint{Constructor(){// ...}Tostring(){// ...}Tovalue(){// ...}}//equivalent to Point.prototype = {constructor ( Span class= "token punctuation") {}tostring ({} , tovalue ({},}          
< Span class= "token function" >         

Object.assignMethod makes it easy to add multiple methods to a class at once.

ClassPoint{Constructor(){//... }}object.assign (Point.prototype< Span class= "token punctuation", {tostring ({ }tovalue ({}})  ; 
< Span class= "token function" >         

JavaScript prototype ES6 syntax

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.