2xrsa/test.html
2015-04-28 12:58:53 +03:00

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>