码迷,mamicode.com
首页 > 其他好文 > 详细

玩转codecademy (二)

时间:2014-05-18 19:45:23      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   c   java   

bubuko.com,布布扣
bubuko.com,布布扣
 1 // create your Animal class here
 2 function Animal(name,numLegs){
 3     this.name=name,
 4     this.numLegs=numLegs
 5     }
 6 // create the sayName method for Animal
 7 Animal.prototype.sayName=function(){
 8     console.log("Hi my name is"+" "+prototype.name);
 9     }
10 
11 // provided code to test above constructor and method
12 var penguin = new Animal("Captain Cook", 2);
13 penguin.sayName();
View Code
bubuko.com,布布扣

bubuko.com,布布扣

 

玩转codecademy (二),布布扣,bubuko.com

玩转codecademy (二)

标签:style   blog   class   code   c   java   

原文地址:http://www.cnblogs.com/tyen0921/p/3732680.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!