iT邦幫忙

0

學習JavaScript第四天--字串型別、「賦值運算子+=、-=」「a++」「a--」

  • 分享至 

  • xImage
  •  
  • 宣告字串:
    用單引號「‘’」或使用雙引號「“”」都可以喔!
let a = 'abc';
let b = "def";

單引號「''」不可使用地方是:
ex:

let c = 'let's go';

這樣會報錯,如圖:
https://ithelp.ithome.com.tw/upload/images/20211006/20140615OGBXidKBXb.jpg

  • 字串相加:
let friendName = 'Tom' ;
let greeting = '你吃飯了嗎?';
let total = friendName + '  '+greeting;
console.log(total);

ans:
"Tom 你吃飯了嗎?"

  • 可以使用typeof來查詢當前使用的變數型別:
let friendName = 'Tom' ;
let greeting = '你吃飯了嗎?';
let total = friendName + '  '+greeting;
console.log(typeof friendName);
  • 「賦值運算子+=、-=」「a++」「a--」
    「a++」--->等於加一,累加一
    「a--」--->等於減一,累減一
    「a+=2」--->a = a+2 ;

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言