ES6學習筆記 Udacity

2021-08-09 18:21:53 字數 1099 閱讀 5571

part 1: es6 語法——for…of…迴圈(附首字母大寫方法)

格式:

const digits = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];

for (const digit of digits)

tips:建議使用複數物件名稱來表示多個值的集合。這樣,迴圈該集合時,可以使用名稱的單數版本來表示集合中的單個值。例如,for (const button of buttons)

練習:

編寫符合以下條件的 for…of 迴圈:

**應該將以下每天輸出到控制台中:

sunday

monday

tuesday

wednesday

thursday

friday

saturday

題目:

/*

* programming quiz: writing a for...of loop (1-4)

*/const days = ['sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday'];

// your code goes here

我的答案:

const days = ['sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday'];

// my code goes here

function firstuppercase(str)

for(const day of days)

這裡很簡單,難在第一次寫首字母轉大寫…**是:

function firstuppercase(str) 

ES6學習筆記

let 塊變數 作用域為塊 const 常亮 作用域為當前塊 解構賦值 例 var x,y 1,2 字元擴充套件 at includes startswith endswith repeat codepointat 模板字串 例 正則的uiy 數值擴充套件 number.isfinite numbe...

ES6學習筆記

常用語法 1 let 與var類似,不同的是let定義的變數有塊級作用域,比如 var a 1 while true alert a 2 用let let a 1 while true alert a 12 const用來定義變數,但是定義之後的值不能再次更改了。乙個實際的用途是用來定義引入的模組,...

ES6學習筆記

var 有變數提公升 let 是塊級作用域,沒有變數提公升 模板語言 還原百分百定義的格式 const 定義常量,特殊情況可以改變值 const b 1 b 2 error const b b.a 2 ok b.c 10 ok object是記憶體位址,位址不變就沒問題 預設值 在不知道接收到個什麼...