iT邦幫忙

2023 iThome 鐵人賽

DAY 17
0
影片教學

一起來實作響應式網頁設計系列 第 17

一起來實作響應式網頁設計:你的邏輯還行嗎? JavaScript的邏輯判斷 Day17

  • 分享至 

  • xImage
  •  

影片教學

Yes

重點回顧

Comparison Operators

  • ==:回傳 true if the operands are equal,也就是判斷==左右兩邊值是否相等
  • ===:回傳 true if the operands are equal & of the same data type,聯資料類型都要相同
  • !=:回傳 true if the operands are not equal,也就是判斷!=左右兩邊值是否不同
  • !===:回傳 true if the operands are not equal or not of the same data type
  • <=,>=, >, <:回傳true if operators 兩邊的值符合該 operator 的運算結果

Logical Operators

  • &&:回傳 true if 兩邊條件都為 true
  • ||:回傳 true if 兩邊條件有一項為true

if-else statement

if(條件) {
  執行的程式
}
else if(條件) {
  執行的程式
}
else {
  執行的程式
}

以上是今天的教學,感謝大家觀看。


上一篇
一起來實作響應式網頁設計:JavaScript Data Type-2 Day16
下一篇
一起來實作響應式網頁設計:Truthy & Falsy Values Day18
系列文
一起來實作響應式網頁設計30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言