You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
299 B
JavaScript

<html>
<head>
<title>Concat - Happy Codings :-) JavaScript Code Examples</title>
<script type = "text/javascript">
var aObject = ["A", "B", "C", "D"];
for (var i = 0; i < aObject.length; i++) {
document.write(aObject[i]);
}
</script>
</head>
<body>
</body>
</html>