关于
个人简介 | Resume
class engineer {
constructor(name, age, sex, profession) {
this.name = name;
this.age = age,
this.sex = sex,
this.profession = profession
}
}
class webDesigner extends engineer {
constructor(name, age, sex, profession, hobbies){
super(name, age, sex, profession);
this.hobbies = hobbies;
}
outPutSkills () {
console.log("hello, welcome to my website");
console.log(`i'm ${this.name}, a ${this.profession} in BJ`);
console.log(`I have lots of hobbies, such as ${this.hobbies}`);
}
}
const me = new webDesigner('Jason', 'after 90', 'male', 'webdesigner', ['basketball','football','coding'])
me.outPutSkills()
------------------------ === 分割线 === ------------------------
const engineer = function (name, age, sex, profession) {
this.name = name,
this.age = age,
this.sex = sex,
this.profession = profession
}
engineer.prototype.sayHello = function () {
console.log("hello, welcome to my website");
}
const webDesigner = function (name, age, sex, profession, hobbies) {
this.name = name,
this.age = age,
this.sex = sex,
this.profession = profession,
this.hobbies = hobbies
}
webDesigner.prototype = new engineer()
webDesigner.prototype.introduce = function () {
console.log(`i'm ${this.name}, a ${this.profession} in BJ`);
console.log(`I have lots of hobbies, such as ${this.hobbies}`);
}
const me = new webDesigner('Jason', 'after 90', 'male', 'webdesigner', ['basketball','football','coding'])
me.sayHello()
me.introduce()
博客目的 | Goal
记录生活的瞬间 , 分享学习的心得
在朋友面前装13(其实菜B一个)
编程理想 | Dream
我是一个热爱技术的小白,一直觉得编程大牛才是世界上最叼的,好的程序员绝对是造福世界,改变世界。比尔盖茨用Windows改变了世界,扎克伯格用facebook连接了全世界,不求我的代码能改变世界,但求自己开心就好~
这里特别说一下关于 “不要自称为程序员” 的说法:
首先我认同这样的说法,相比而言自己真不算什么程序员,但是人总要往高处走;So 你应该把自己描述成与增加收入、降低成本有关系的人,比如”xx产品的开发者”或”改进者”。有一个 Google Adsense 程序员的自我介绍,是这样写的:”Google 公司97%的收入,与我的代码有关。”
技术方向 | Technology
一、主修课:HTML CSS JAVASCRIPT,小程序,VUE,Taro, ReactNative
二、数据库:MYSQL ORACLE 用的不多,深了不会
三、服务器:Tomcat,Apache, Linux , Nginx
四、AI软件:Photoshop,Illustrator,Mockingbot,3Dmax,Edge Animate
五、兴 趣:热衷原生, 热爱开源
haha.qiaoqiao
这个博客太漂亮了,i了
张新全博客前来恭贺博主早日成为高级前端工程师,月薪上2w
过来看看