「JavaScript」typeofで条件(三項)演算子を利用するサンプル

2021年8月19日

書式
type of 変数名 =="undefined"

使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
func test(kk){
var cft = (typeof kk == "undefined" || typeof kk.width == "undefined") ? 300 : kk.width;
// some code
}
func test(kk){ var cft = (typeof kk == "undefined" || typeof kk.width == "undefined") ? 300 : kk.width; // some code }
func test(kk){

   var cft = (typeof kk == "undefined" || typeof kk.width == "undefined") ? 300 : kk.width;
   
   // some code
}

 

JavaScript

Posted by arkgame