JavaScriptでの使用に続いてオブジェクトをクリーニングする必要があるのか、それとも私のために行うGarbageCollectorがいくつかありますか?例えば これは私のコードの場合:JavaScriptでJavascriptで使用した後にオブジェクトをnullに設定する必要はありますか?
function foo()
{
var test = new testClass();
console.log(test.getMessage());
//the question is if there a need for the next line or not:
test = null;
}
var testClass = function() {
this.getMessage = function() {return "My MSG" };
}
手動で行うのがよい方法です。 so set undefined test = undefined; –