11 lines
220 B
HTML
11 lines
220 B
HTML
<script>
|
|
let c = "Car"
|
|
|
|
displayItems("Bananas", 32.3, c)
|
|
|
|
function displayItems()
|
|
{
|
|
for (j = 0 ; j < displayItems.arguments.length ; ++j)
|
|
document.write(displayItems.arguments[j] + "<br>")
|
|
}
|
|
</script> |