mirror of
https://github.com/hacks-guide/2xrsa.git
synced 2024-11-27 11:30:33 +00:00
13 lines
222 B
HTML
13 lines
222 B
HTML
<html><head><script>
|
|
a='test'.match(/./g);
|
|
if(a.shift()) alert('1');
|
|
if(a.shift()) alert('2');
|
|
if(a.shift()) alert('3');
|
|
if(a.shift()) alert('4');
|
|
if(a.shift()){
|
|
alert('5');
|
|
}else{
|
|
alert('6');
|
|
}
|
|
</script><head></html>
|