Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これは JavaScript で実行できますか?
type == 1 ? function1() : function2();
はい、それは有効なコードです。の値に応じて、またはのいずれ かを呼び出しますが、両方ではありません。function1() function2()type
function1()
function2()
type
2 つの関数を呼び出すことはありません。2 つの関数のいずれかを呼び出します。