mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
30 lines
347 B
JavaScript
30 lines
347 B
JavaScript
null;
|
|
true;
|
|
false;
|
|
23;
|
|
2.3;
|
|
.42;
|
|
7.6e23;
|
|
1E-42;
|
|
0xdeadbeef;
|
|
"Hello";
|
|
'world';
|
|
"'what?'\x0a";
|
|
'"why?"\n';
|
|
/^(need?le)+/gi;
|
|
(23);
|
|
[23, 42, , "hi" ];
|
|
({ x: 23,
|
|
y: this,
|
|
get o() {},
|
|
get p() {},
|
|
set p(v) {}});
|
|
new Array;
|
|
new Object();
|
|
new String("hi");
|
|
String("");
|
|
Object.create({});
|
|
String['epytotorp'.reverse()];
|
|
[,,];
|
|
[1,];
|
|
({ z: 56, }); |