前端学习笔记202310学习笔记第一百壹拾一天-作用域&作用域链&预编译&闭包基础20

function sunSched(thing){
    var sunSched=''
    var opration={
        setSched:function(){
            sunSched=thing
        },
        showSched:function(){
            console.log("MY schedule on sunday is "+thing)
        }
    }
    return opration
}
var sunSched=sunSched("studying")
sunSched.setSched()
sunSched.showSched()

运行结果

posted @ 2023-11-08 16:39  前端导师歌谣  阅读(4)  评论(0编辑  收藏  举报  来源