
Javascript
菜得你想哭
好好学习,天天向上
展开
-
[JS][面试题]serTimeout和Promise
console.log("start"); setTimeout(() => { console.log("timer1"); new Promise(function (resolve) { console.log(" promise start "); resolve(); }).then(function () { console.log("promise1"); }); }, 0); setTimeout(()原创 2022-02-27 10:31:18 · 314 阅读 · 0 评论 -
[JS][面试题]typeof
typeof 1 === '' typeof '1' === '' typeof true === '' typeof null === '' typeof undefined === '' typeof function() {} ==='' typeof 1 === ""; console.log(typeof 1); //number console.log(typeof 1 == ""); //false console.log(typeof 1 === ""); //false typeof "原创 2022-02-27 10:27:14 · 480 阅读 · 0 评论 -
[JS]学习第一天
作业一 依次询问并获取用户的姓名、年龄、性别,收集数据之后在控制台依次打印出来。 作业二 1、询问用户年龄,用户输入年龄后,把用户输入的年龄增加5岁 2、增加5岁后,通过弹出框提示用户 “ 据我估计,五年后,你可能XX岁了” 一、 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content原创 2021-10-06 19:35:43 · 1171 阅读 · 0 评论