“множество” Ответ

Множество

// this is sumple array
let array=[1,2,3,4]
Mysterious Macaw

множество

// 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])
SkiLL3r

множество

<button class="browser-style">Click me</button>
Wicked Wolf

множество

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)
Long Loris

множество

String[] cities = {
  "Amsterdam",
  "Paris",
  "Berlin",
  "Münster",
  "Lisbon"
};
copy
Smiling Stag

множество

array 7
Important Ibis

Множество

// this is sumple array
let array=[1,2,3,4]
Mysterious Macaw

множество

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
Arrogant Anteater

множество

<!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>
Joyous Jaguar

МНОЖЕСТВО

MNM
ARRAY
Jolly Jay

Ответы похожие на “множество”

Вопросы похожие на “множество”

Смотреть популярные ответы по языку

Смотреть другие языки программирования