programming-examples/js/Others/A string array variable.js
2019-11-15 12:59:38 +01:00

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>