function A() {} const a = new A(); console.log(a.constructor); console.log(a.prototype); console.log(a.__proto__); console.log(A.prototype.constructor);
const value = 21; function getInfo() { console.log(typeof value); const value = 'John'; } getInfo();
new Promise((res, rej) => {res(1)}) .then(v => {console.log(v); throw new Error('error')}) .then(() => {console.log(2)}) .catch(() => { console.log(3)}) .then(() => { console.log(4)})
const list = [ { label: '昨天', value: 1 }, { lavel: '今天', value: 2 }, ]
暂时想到这么多。应该是这么多面试以来最舒服的一次面试了,面试官很温柔,答对了会肯定,不会的问题也会提示和引导你。说我基础还可以,可以考虑多接触一些项目和业务场景。
#前端实习##日常实习#