Test:o.x = o.x || {} assignments in JS

This commit is contained in:
Nathan Shively-Sanders
2018-02-07 14:55:23 -08:00
parent 2f8c237270
commit 7e3fdc29fa

View File

@@ -10,8 +10,13 @@ var my = my || {};
my.m = function() {
return 1;
}
my.p = {};
my.n = 1;
my.m
my.p
my.n
my.o = {};
my.possible = my.possible || {};
my.m;
my.o;
my.n;
my.possible;