-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathComposition or Mixins.html
More file actions
45 lines (44 loc) · 1.17 KB
/
Composition or Mixins.html
File metadata and controls
45 lines (44 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Composition or mixins</title>
</head>
<body>
<script>
var eating ={
eat: function(){
return "Ram can Eat <br> ";
}
};
var walking = {
walk: function(){
return "Ram can walk <br>";
}
};
var reading ={
read: function(){
return "Ram can read <br>";
}
};
var starting = {
start: function(){
return "Robot Stating.. <br>";
}
};
var stop = {
stop: function(){
return "Robot stop...<br>"
}
};
var Ram = Object.assign({},eating,walking,reading);
var Robot = Object.assign({}, walking,starting,stop);
document.write(Ram.eat());
document.write(Ram.walk());
document.write(Ram.read());
document.write(Robot.start());
document.write(Robot.stop());
</script>
</body>
</html>