このブログは、旧・はてなダイアリー「檜山正幸のキマイラ飼育記 メモ編」(http://d.hatena.ne.jp/m-hiyama-memo/)のデータを移行・保存したものであり、今後(2019年1月以降)更新の予定はありません。

今後の更新は、新しいブログ http://m-hiyama-memo.hatenablog.com/ で行います。

分岐のwhen構文

when {number => "this is number", string => "this is string"}


function output(x) {
alert("output: " + x);
}

if (typeof input === 'number') {
output("this is number")
} else if (typeof input === 'string') {
output ("this is string")
}