1if (Testobj.getVal() != 'Hello World') { 2 throw "unexpected value"; 3} 4 5Testobj = "a string"; 6if (Testobj.getVal != undefined || 7 Testobj != 'a string') { 8 throw "can' change Testobj?"; 9} 10 11