aboutsummaryrefslogtreecommitdiff
path: root/files/vi/glossary/undefined
diff options
context:
space:
mode:
authorFlorian Merz <me@fiji-flo.de>2021-02-11 14:51:56 +0100
committerFlorian Merz <me@fiji-flo.de>2021-02-11 14:51:56 +0100
commit904a5994c87295d84d25f869d5555f35fbce5070 (patch)
treea8535dfa32d2180186965a0bb66931b4830c5d73 /files/vi/glossary/undefined
parent8260a606c143e6b55a467edf017a56bdcd6cba7e (diff)
downloadtranslated-content-904a5994c87295d84d25f869d5555f35fbce5070.tar.gz
translated-content-904a5994c87295d84d25f869d5555f35fbce5070.tar.bz2
translated-content-904a5994c87295d84d25f869d5555f35fbce5070.zip
unslug vi: move
Diffstat (limited to 'files/vi/glossary/undefined')
-rw-r--r--files/vi/glossary/undefined/index.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/files/vi/glossary/undefined/index.html b/files/vi/glossary/undefined/index.html
new file mode 100644
index 0000000000..6cad2c4b1b
--- /dev/null
+++ b/files/vi/glossary/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>