blob: 5bc6e40c1d03741d1fe272c32affe7aade74a7dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
---
title: undefined
slug: Glossary/undefined
translation_of: Glossary/undefined
original_slug: Tu-dien-thuat-ngu/undefined
---
<p><span class="seoSummary"><strong><code>undefined</code></strong></span> là một giá trị nguyên thủy được gán tự động cho các biến vừa được khai báo hoặc cho các đối số chính thức không có đối số thực tế.</p>
<h2 id="Example">Example</h2>
<pre class="brush: js notranslate">var x; // tạo một biến nhưng không gán giá trị
console.log("x's value is", x) //logs "x's value is undefined"
</pre>
<h2 id="Tìm_hiểu_thêm">Tìm hiểu thêm</h2>
<h3 id="Kiến_thức_phổ_thông">Kiến thức phổ thông</h3>
<ul>
<li>{{Interwiki("wikipedia", "Undefined value")}} on Wikipedia</li>
</ul>
<h3 id="Technical_reference">Technical reference</h3>
<ul>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures">JavaScript data types and data structures</a></li>
</ul>
|