Array
// this is sumple array
let array=[1,2,3,4]
Mysterious Macaw
// this is sumple array
let array=[1,2,3,4]
// this is an array
var days = ["sunday","mondey","tuesday","wednesday"]
//here you can call arrays items using index number inside squar bracket
console.log(day[0])
console.log(day[1])
console.log(day[2])
<button class="browser-style">Click me</button>
my_list = [-15, -26, 15, 1, 23, -64, 23, 76]
new_list = []
while my_list:
min = my_list[0]
for x in my_list:
if x < min:
min = x
new_list.append(min)
my_list.remove(min)
print(new_list)
String[] cities = {
"Amsterdam",
"Paris",
"Berlin",
"Münster",
"Lisbon"
};
copy
array 7
// this is sumple array
let array=[1,2,3,4]
const collection = {
length: 0,
addElements: function(...elements) {
// obj.length will be incremented automatically
// every time an element is added.
// Returning what push returns; that is
// the new value of length property.
return [].push.call(this, ...elements);
},
removeElement: function() {
// obj.length will be decremented automatically
// every time an element is removed.
// Returning what pop returns; that is
// the removed element.
return [].pop.call(this);
}
}
collection.addElements(10, 20, 30);
console.log(collection.length); // 3
collection.removeElement();
console.log(collection.length); // 2
<!DOCTYPE html>
<html>
<body>
<script>
var str = ["1818-15-3", "1819-16-3"];
var arr = str.split(":");
document.write(arr[1] + ":" + arr[2]);
</script>
</body>
</html>
MNM
ARRAY