Jump to content
  • 0

Создание и проверка существования переменной


DjTarik
 Share

Question

Знаю, что вопрос нубский, но всё же:

Создаю переменную:


...
var obj = document.getElementById('ID');
...

И проверяю:


...
if (obj) {
...
}
...

Это вообще верно? Как в JS грамотно выполняется такая проверка?

(ситуация, когда 'ID' нету в документе)

Спасибо.

Link to comment
Share on other sites

11 answers to this question

Recommended Posts

  • 0

if (obj) вернет true если переменная не равна пустой строке, нулю, null или undefined.


var obj = 0; // false
var obj = ''; // false
var obj = null; // false
var obj = undefined; // false

document.getElementById('ID') если такого элемента нет или нет такого ID вернет null.

Link to comment
Share on other sites

  • 0

if (obj) вернет true если переменная не равна пустой строке, нулю, null или undefined.


var obj = 0; // false
var obj = ''; // false
var obj = null; // false
var obj = undefined; // false

document.getElementById('ID') если такого элемента нет или нет такого ID вернет null.

Т.е. получается, что


if (obj) {}

можно смело использовать и не париться над условиями, типа:


if (obj != null) {}

Так?

Link to comment
Share on other sites

  • 0

тоесть

var obj = document.getElementById('ID');

мы написали где то, но использовать в этот момент не собираемся ? а лишь потом, когда будет нужда ?

зачем тогда заранее создавать переменную ? может мы её вообще не используем...

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