Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com Patches, unit tests, benchmarks, whitepaper, and outreach briefs. Public domain — no copyright claimed. Use freely.
9 lines
196 B
JavaScript
9 lines
196 B
JavaScript
if (Testobj.getVal() != 'Hello World') {
|
|
throw "unexpected value";
|
|
}
|
|
|
|
Testobj = "a string";
|
|
if (Testobj.getVal != undefined ||
|
|
Testobj != 'a string') {
|
|
throw "can' change Testobj?";
|
|
}
|