dot.dot.dot.exampol

This commit is contained in:
Captain Nick Lucifer* 2023-03-10 23:21:16 +05:45
commit a0bc2d79de
406 changed files with 34577 additions and 0 deletions

View file

@ -0,0 +1 @@
[],Array(1),[1,2,3]

View file

@ -0,0 +1 @@
(function(){var a=function(){};return new a(1,2,3,4)})()

View file

@ -0,0 +1 @@
(function(){function a(){}return new a(1,2,3,4)})()

View file

@ -0,0 +1 @@
(function(){function a(){}(function(){return new a(1,2,3)})()})()

View file

@ -0,0 +1 @@
a=1,b=a,c=1,d=b,e=d,longname=2;if(longname+1){x=3;if(x)var z=7}z=1,y=1,x=1,g+=1,h=g,++i,j=i,i++,j=i+17

View file

@ -0,0 +1 @@
var a=a+"a"+"b"+1+c,b=a+"c"+"ds"+123+c,c=a+"c"+123+d+"ds"+c

View file

@ -0,0 +1 @@
var a=13,b=1/3

View file

@ -0,0 +1 @@
function bar(){return--x}function foo(){while(bar());}function mak(){for(;;);}var x=5

View file

@ -0,0 +1 @@
a=func(),b=z;for(a++;i<10;i++)alert(i);var z=1;g=2;for(;i<10;i++)alert(i);var a=2;for(var i=1;i<10;i++)alert(i)

View file

@ -0,0 +1 @@
var a=1;a==1?a=2:a=17

View file

@ -0,0 +1 @@
function a(a){return a==1?2:17}

View file

@ -0,0 +1 @@
function x(a){return typeof a=="object"?a:a===42?0:a*2}function y(a){return typeof a=="object"?a:null}

View file

@ -0,0 +1 @@
function f(){var a;return(a="a")?a:a}f()

View file

@ -0,0 +1 @@
new(A,B),new(A||B),new(X?A:B)

View file

@ -0,0 +1 @@
var a=/^(?:(\w+):)?(?:\/\/(?:(?:([^:@\/]*):?([^:@\/]*))?@)?([^:\/?#])(?::(\d))?)?(..?$|(?:[^?#\/]\/))([^?#]*)(?:\?([^#]))?(?:#(.))?/

View file

@ -0,0 +1 @@
var a={"\b":"\\b","\t":"\\t","\n":"\\n","\f":"\\f","\r":"\\r",'"':'\\"',"\\":"\\\\"}

View file

@ -0,0 +1 @@
var a=3250441966

View file

@ -0,0 +1 @@
var a=function(b){b(),a()}

View file

@ -0,0 +1 @@
a:1

View file

@ -0,0 +1 @@
var a=0;switch(a){case 0:a++}

View file

@ -0,0 +1 @@
label1:{label2:break label2;console.log(1)}

View file

@ -0,0 +1 @@
(a?b:c)?d:e

View file

@ -0,0 +1 @@
o={".5":.5},o={.5:.5},o={.5:.5}

View file

@ -0,0 +1 @@
result=function(){return 1}()

View file

@ -0,0 +1 @@
var a=8,b=4,c=4

View file

@ -0,0 +1 @@
var a={};a["this"]=1,a.that=2

View file

@ -0,0 +1 @@
var a=2e3,b=.002,c=2e-5

View file

@ -0,0 +1 @@
var s,i;s="",i=0

View file

@ -0,0 +1 @@
function bar(a){try{foo()}catch(b){alert("Exception caught (foo not defined)")}alert(a)}bar(10)

View file

@ -0,0 +1 @@
x=(y,z)

View file

@ -0,0 +1 @@
foo+"",a.toString(16),b.toString.call(c)

View file

@ -0,0 +1 @@
function f(){function b(){}if(a)return;b()}

View file

@ -0,0 +1 @@
[(a,b)]

View file

@ -0,0 +1 @@
var a={a:1,b:2}

View file

@ -0,0 +1 @@
(function(){var a=function b(a,b,c){return b}})()

View file

@ -0,0 +1 @@
var nullString="\0"

View file

@ -0,0 +1 @@
typeof a=="string",b+""!=c+"",d<e==f<g

View file

@ -0,0 +1 @@
var a=1,b=2

View file

@ -0,0 +1 @@
function id(a){return a}

View file

@ -0,0 +1 @@
with({});