您好,登錄后才能下訂單哦!
好程序員web 前端培訓(xùn)分享 JavaScript 學(xué)習(xí)筆記閉包與繼承,閉包:閉包是我們函數(shù)的一種高級(jí)使用方式, 在聊閉包之前我們要先回顧一下 函數(shù)
function fn() {
console.log('我是 fn 函數(shù)')}fn()
function fn() {
const obj = {
name : 'Jack',
age : 18,
gender : '男'
}
return obj} const o = fn()
function fn() {
return function () {}} const f = fn()
function fn() {
const num = 100
// 這個(gè)函數(shù)給一個(gè)名字,方便寫筆記 return function a() {
console.log(num)
}} const f = fn()
function Person() {
this.name = 'Jack'}Person.prototype.sayHi = function () {
cosnole.log('hello')}
function Student() {}Student.prototype = new Person()
function Student() {
Person.call( this)}
function Student() {
Person.call( this)}Student.prototype = new Person
class Student extends Person {
constructor () {
// 必須在 constructor 里面執(zhí)行一下 super() 完成繼承 super()
}}
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。