aboutsummaryrefslogtreecommitdiff
path: root/files/vi/tu-dien-thuat-ngu/undefined/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/vi/tu-dien-thuat-ngu/undefined/index.html')
-rw-r--r--files/vi/tu-dien-thuat-ngu/undefined/index.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/files/vi/tu-dien-thuat-ngu/undefined/index.html b/files/vi/tu-dien-thuat-ngu/undefined/index.html
new file mode 100644
index 0000000000..6cad2c4b1b
--- /dev/null
+++ b/files/vi/tu-dien-thuat-ngu/undefined/index.html
@@ -0,0 +1,27 @@
+---
+title: undefined
+slug: Tu-dien-thuat-ngu/undefined
+translation_of: Glossary/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>