var
ara0 = [1, 2, 3, 4, 5];
ara1 =
new
Object();
ara1[
'one'
] = 1;
'two'
] = 2;
'three'
] = 3;
'four'
] = 4;
'five'
] = 5;
function
objOne() {
this
.val0 =
'Hello World!'
,
.val1 =
'Привет Мир!'
.val2 =
'To be or not to be?'
}
funMake() {
for
(
i
in
ara0) {
document.write(i +
' '
);
document.write(
'<br /><br />'
ara1) {
' = '
+ ara1[i] +
'<br />'
O =
objOne();
O) {
+ O[i] +
<!DOCTYPE html>
<
html
>
head
meta
charset
=
"utf-8"
/>
title
>New Page</
script
src
"js/script.js"
></
</
body
funMake();