I am using Json in javascript. I'm reading the json from test.js. How can I read for(;;).
<script type="text/javascript">
$.getScript('ajax/test.js', function(data, textStatus){
jQuery.each(data, function(return) {
alert(return.name);
alert(return.surname)
});
});
</script>
-
TEST JS
for (;;);
{
"name" : "Mustafa Can",
"surname" : "Pala"
};
How can I read for(;;)mean?[citation-needed]