diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:43:23 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:43:23 -0500 |
commit | 218934fa2ed1c702a6d3923d2aa2cc6b43c48684 (patch) | |
tree | a9ef8ac1e1b8fe4207b6d64d3841bfb8990b6fd0 /files/vi/tu-dien-thuat-ngu/undefined/index.html | |
parent | 074785cea106179cb3305637055ab0a009ca74f2 (diff) | |
download | translated-content-218934fa2ed1c702a6d3923d2aa2cc6b43c48684.tar.gz translated-content-218934fa2ed1c702a6d3923d2aa2cc6b43c48684.tar.bz2 translated-content-218934fa2ed1c702a6d3923d2aa2cc6b43c48684.zip |
initial commit
Diffstat (limited to 'files/vi/tu-dien-thuat-ngu/undefined/index.html')
-rw-r--r-- | files/vi/tu-dien-thuat-ngu/undefined/index.html | 27 |
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> |