-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.js
More file actions
50 lines (38 loc) · 822 Bytes
/
Copy pathcustom.js
File metadata and controls
50 lines (38 loc) · 822 Bytes
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
// var x = 35;
// if(x%5==0){
// console.log("the number is divided by 5");
// console.log(++x)
// }
// else{
// console.log("errr");
// console.log(--x);
// }
// const num1 = 3;
// const num2 = 4;
// console.log(num1+num2);
// const Emon = function(num1, num2) {
// sum = num1 + num2;
// console.log(sum);
// }
// function Emon(num1, num2) {
// sum = num1 + num2;
// console.log(sum);
// }
// Emon(3, 4)
// Emon(4, 4)
// Emon(3, 7)
// Emon(87, 4)
// Emon(13, 3)
// Emon(13, 3)
// const area = function (r){
// return(3.1416*r*r)
// }
// const getArea = area(5)
// console.log(getArea);
const myObject = {
bangladesh: "cruption",
america: "technology",
india: "cow's pee",
}
console.log(myObject.bangladesh+ ' ' + myObject.america);
console.log(myObject.india);