Jump to content
  • 0

Объясните, почему так...


Rimming
 Share

Question

"use strict"
var formElement = document.forms["searchform"];
var guests = formElement["searchform-guests-number"];
var rooms = formElement["searchform-guests-rooms"];
guests.min = 1;
guests.max = 6;
var MAX_GUESTS_PER_ROOM = 3;

function setMinAndMaxRooms(roomsElement, guestsNumber) {
    roomsElement.min = Math.ceil(guestsNumber / MAX_GUESTS_PER_ROOM);
    roomsElement.max = guestsNumber;
    
    }
    
guests.value = 2;

setMinAndMaxRooms(rooms, guests.value);
rooms.value = rooms.min;

 

откуда rooms.min берет свое значение? 

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0
var test = {v:1};

function A(param){
  param.v = 9;
}

A(test);

console.log(test.v);// 9

передача параметра в функцию по ссылке. Собственно все объекты в javascript автоматом передаются по ссылке.

Link to comment
Share on other sites

  • 0

Переменная rooms передается в функцию setMinAndMaxRooms().
Переменная rooms является объектом, а объекты в JS передаются в функции по ссылке.
Это значит, что при изменении объекта внутри функции, он меняется и за ее пределами. 
В первой строке setMinAndMaxRooms() первому параметру (которым является объект rooms) как раз задается свойство min

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy