Jump to content
  • 0

JavaScript объект, прошу помочь


cupWebCode
 Share

Question

Есть такой код

var calculator = {

    sum : function () {
        return this.a + 2;
    },
    readValues : function () {
        this.a =+ prompt('a?');
    }
}
calculator.readValues();
document.write(calculator.sum());
 
он возвращает значение которое ввёл пользователь + 2. Да всё работает. Но я никак не могу понять, почему в методе readValues написано так this.a =+ prompt('a?'); Насколько я знаю пишут +=, попробовал так сделать, результатом "undefined52". В чём разница? почему так происходит? спасибо...
Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Этот плюс к промту относится, чтобы преобразовать из строки в число, так как promt возвращает строку.

http://learn.javascript.ru/number#преобразование-к-числу

Edited by mrnobody
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