-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtutoial2.js
More file actions
66 lines (50 loc) · 1.18 KB
/
tutoial2.js
File metadata and controls
66 lines (50 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/**
* Created by -rom- on 23.02.2017.
*/
//noinspection InfiniteLoopJS
/*
for ( i=0;i < 5; i++){
console.log(i);
}
*/
var mas=[45,2,75,4,5];
var max=0 , min=0;
for (i=0;i<mas.length;i++){
if(mas[i]>mas[i+1]){
max=mas[i];
}
}
console.log("max elem = "+max);
console.log("<------------------->");
var document ={
title:"title",
body:"body",
footer:"footer",
wish: {
title:"Bogusj",
body:"bibodl"
}
};
console.log(document.title + "<---> " + document.wish.title)
console.log("<------------------->");
function Box(h,w,d,m) {
this.height=h;
this.wight=w;
this.dept=d;
this.material=m;
}
Box.prototype.getEquals=function (differObj) {
if(this.height==differObj.height&&this.wight==differObj.wight){
return true;
}else{
return false
}
}
Box.prototype.getSquare = function () {
return this.height*this.dept*this.height;
}
var box1 = new Box(3,1,2,1);
var box2 = new Box(3,3,3,3);
console.log("box1 = "+ box1.getSquare() + " and box2 ="+box2.getSquare());
var equal = box1.getEquals(box2);
console.log("result of equals = " + equal);