【JavaScript】連想配列のキーが存在するか確認する
JavaScriptとか速攻忘れるからメモ。
var hash = { hoge: "hello", fuga: "bye" }; alert('hoge' in hash); //true alert('fuga' in hash); //true alert('piyo' in hash); //false
つら……。
JavaScriptとか速攻忘れるからメモ。
var hash = { hoge: "hello", fuga: "bye" }; alert('hoge' in hash); //true alert('fuga' in hash); //true alert('piyo' in hash); //false
つら……。