私は次のことをしたい:
// an object
var object = {
one: null,
two: null,
three: null
};
// an array
var array = ['this is one', 'this is two', 'this is three'];
私は今、それらを両方ともマージしたいので、取得します。
var merged = {
one: 'this is one',
two: 'this is two',
three: 'this is three'
};
純粋なJavaScript(ECMA5)だけで3番目のライブラリを使用したくありません。
それで、トリックは何ですか?
よろしく、bodo