-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharray.js
64 lines (54 loc) · 1.28 KB
/
array.js
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
let shoppingList = ["apple", "orange", "wheat"];
let marks = [20, 30, 40, 50];
let collection = [12, "dog", true, null, NaN];
const cars = new Array("BMW", "Nissan", "Toyota");
cars[0] = "Audi";
// cars.forEach(car => {
// console.log(car);
// });
// cars.map(car => {
// console.log(car);
// //auto returns
// })
//array length
console.log(cars.length);
//removing first item
console.log(cars);
const removedCar = cars.pop();
console.log(removedCar);
console.log(cars);
//removing first item
cars.shift();
console.log(cars);
//adding items to last
cars.push("Lambo");
console.log(cars);
//adding items to first
cars.unshift("Mc Laren");
console.log(cars);
let nums = [1, 2, 3, 4, 5, 55, 12, 45, 67, 988, 1000];
console.log(nums.reduce((a, b) => a + b));
console.log(
nums.filter((num) => {
return num % 2 == 0;
})
);
console.log(
nums.map((num) => {
return num * 2;
})
);
console.log(
`The smallest number is ${
nums.sort((a, b) => {
parseInt(a) - parseInt(b);
})[0]
}`
);
console.log(`The greatest number is ${nums[nums.length - 1]}`);
const text = ["nischal", "is", "a", "boy"];
text.newJoin = function (operator) {
return text.reduce((a, b) => a + operator + b);
};
console.log(text.newJoin(" baby "));
console.log(text.reduce((a, b) => a + b));