js中類的構造順序

function g(config) { console.log("gg"); } function h() { console.log("hh"); } new g({ "xx": new h() }); /** ➜ work node test hh gg */ 先構造裏面的h,在構造外面的g。node
相關文章
相關標籤/搜索