

function hello() {
console.log('Hello There')
}
hello.world = "Hello World"
console.log(hello.world)
Hello WorldVí dụ :
function hello() {
console.log('Hello There')
}
const hi = hello
hi.xinchao = "xinchao"
console.log(hello.xinchao)
xinchaoFunction hello, sau đó tôi gán Function hello chohi,sau đó tôi tiếp tục thêm property xinchao vào hi.Cuối cùng tôiconsole.log(hello.xinchao) và tôi nhận được kết quả là xinchao.Điều này cóYou need to login in order to like this post: click here
YOU MIGHT ALSO LIKE