「JavaScript」typeofで条件(三項)演算子を利用するサンプル
書式
type of 変数名 =="undefined"
使用例
func test(kk){ var cft = (typeof kk == "undefined" || typeof kk.width == "undefined") ? 300 : kk.width; // some code }
Coding Changes the World
書式
type of 変数名 =="undefined"
使用例
func test(kk){ var cft = (typeof kk == "undefined" || typeof kk.width == "undefined") ? 300 : kk.width; // some code }