あなたは配列をクローンすることができますArray#slice
:
console.log(s); // ["bye"], i.e. incorrect
console.log(s.slice()); // ["hi"], i.e. correct
代わりに使用できる関数にはconsole.log
、この問題はありません。
console.logShallowCopy = function () {
function slicedIfArray(arg) {
return Array.isArray(arg) ? arg.slice() : arg;
}
var argsSnapshot = Array.prototype.map.call(arguments, slicedIfArray);
return console.log.apply(console, argsSnapshot);
};
オブジェクトの場合、残念ながら、最善の方法は、WebKit以外のブラウザで最初にデバッグするか、複製する複雑な関数を記述することです。キーの順序が重要ではなく、関数がない単純なオブジェクトのみを操作する場合は、常に次のようにできます。
console.logSanitizedCopy = function () {
var args = Array.prototype.slice.call(arguments);
var sanitizedArgs = JSON.parse(JSON.stringify(args));
return console.log.apply(console, sanitizedArgs);
};
これらのすべてのメソッドは明らかに非常に遅いため、通常console.log
のsを使用する場合よりも、デバッグが完了した後でそれらを取り除く必要があります。