1.資料型別有哪些?
基本資料型別(單型別): number、boolean、string、undefined、null、symbol(es6新增型別:永不相等);
引用資料型別: object。裡面包含function、array、date。
2.js 中 typeof 輸出分別是什麼?
返回object型別:typeof {}、typeof 、typeof null;
返回number型別: typeof number、typeof nan;
返回function型別: typeof object、typeof function demo(){};
返回undefined型別: typeof undefined
3.作用域
先在函式內部找,找不到再去函式外部找
如下:var i = 1;
function test() {
console.log(); //undefined
var i = 2;
console.log(i );// 2
4.優先順序順序: 變數 > 普通函式 > 引數 > 提公升
function fn(bar) {
var bar = 1;
function bar() {
return '函式1'
console.log(bar); // 1
function bar() {
return '函式2'
fn(5);
JS基礎語法篇
2 內部js 寫在script標籤裡面!3 外部js 需要script標籤引入 使用src屬性 彈出窗 alert 123 控制台列印 console.log 321 寫入頁面,但是會重繪頁面!document.write 1122 彈出輸入框 let num prompt 請輸入什麼?var a ...
WEB前端 html基礎篇
1 html概述 1 什麼是html web頁或web應用,就是網際網路上的乙個網頁程式,通常以 html或.htm作為字尾的檔案 web頁是由html編寫而成 html hyper text markup language 超文字標記語言 a 26個字元中的首字元 超文字a 超連結的功能 b 26...
web前端面試題 基礎題 html篇
1.xhml和html區別 xhtml 基於xml的指標語言,必須正確巢狀,關閉,大小寫,必須有根元素 html 基於web的網路設計語言 2.前端頁面哪三層 html 結構層 檢視層 css 表示層 js 行為層 3.各大主流瀏覽器的核心 ie ie核心 火狐 gecko 谷歌 webkit bl...