制御文・ループ制御文ifif ( ... ) { ... } else if ( ... ) { ... } else { ... } if ( ... ) console.log( "abc" ); switchvar num = 0; switch ( num ) { case 0: console.log( "0" ); break; case 1: console.log( "1" ); break; default: console.log( "others" ); break; } コメント// コメントです。 /* コメントです。 */ #title("JavaScript / 文法 / 変数・配列・制御文・ループ") |
|