Skip to content
Permalink
a7d5681bd4
Switch branches/tags
Go to file
 
 
Cannot retrieve contributors at this time
executable file 11 lines (10 sloc) 282 Bytes
var x = 'My ' + 'string';
var x = 'My ' + 1234;
var x = 'My ' + y + ' test';
this.errors['test'] = x;
this.errors['test' + 10] = x;
this.errors['test' + y] = x;
this.errors['test' + 'blah'] = x;
this.errors[y] = x;
this.errors[y + z] = x;
this.errors[y + z + 'My' + 'String'] = x;