当前位置:网站首页>Selection (029) - what is the output of the following code?

Selection (029) - what is the output of the following code?

2022-06-24 23:07:00 Qi Delong

function getAge() {
  'use strict'
  age = 21
  console.log(age)
}

getAge()
  • A: 21
  • B: undefined
  • C: ReferenceError
  • D: TypeError

Refer to the answer

原网站

版权声明
本文为[Qi Delong]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/02/202202211158062818.html