//实现lodash的set方法 const obj = {}; set(obj, 'a.b.c', 100); set(obj, 'd', 200); set(obj, 'a.b.d', 300); console.log(obj); //输出{ a: { b: { c: 100, d: 300 } }, d: 200 }
//输入数字返回 xx天xx时xx分xx秒 //并且实现每秒更新一次 let countdown = 98225 function getTime() { } //testcase 输出 //1天3时17分5秒 //1天3时17分4秒 //1天3时17分3秒 //1天3时17分2秒 //1天3时17分1秒 //1天3时17分0秒 //1天3时16分59秒
反问:
二面项目和场景题较多。
#前端实习##日常实习#