iT邦幫忙

2022 iThome 鐵人賽

DAY 5
0
自我挑戰組

node.js 前端後端全都要系列 第 5

Day5-JavaScript 基礎用法(二)

  • 分享至 

  • xImage
  •  

函式

函式宣告 用 function就可以了,不會區分回傳值。

function add(num1,num2){
    return num1 + num2;
}
document.write(add(1,2));

if-else

顧名思義,if-else。

if(a>b && a!=0){
    document.write("a>b");
}
else if(a==b){
    document.write("a=b");
}
else {
    document.write("a<b");
}

物件

宣告方式與其他相同。

var monster = {
    name:"Domo",
    age:"103",
    //也可宣告函式
    print_name:function(){
        document.write(this.name);
    }
};
//使用物件的函式
monster.print_name();

while迴圈

while(條件){
    程式碼
}

只要符合條件,內部的程式碼就會執行,執行到不符條件為止。

for 迴圈

for(宣告變數;條件;變動值)

for(var i=0 ; i<10 ; i++){
    程式碼
}

上一篇
Day4-JavaScript
下一篇
Day6- JavaScript實作 文章上傳(一)
系列文
node.js 前端後端全都要25
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言