blob: 2ebec4cb7aa08b1ff4817ba09331b21712170613 (
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
29
30
|
---
title: Local variable (ローカル変数)
slug: Glossary/Local_variable
tags:
- CodingScripting
- Glossary
- NeedsContent
- 用語集
translation_of: Glossary/Local_variable
---
<p>{{glossary("variable", "変数")}}のうち、その{{glossary("value","値")}}を指す名前が{{Glossary("local scope","ローカルスコープ")}}内にのみあるものです。</p>
<h2 id="Example" name="Example">例</h2>
<pre class="brush: js">var global = 5; //is a global variable
function fun(){
var local = 10; //is a local variable
}
</pre>
<section class="Quick_links" id="Quick_Links">
<ol>
<li>一般知識
<ol>
<li>Wikipedia 上の{{interwiki("wikipedia", "ローカル変数")}}</li>
</ol>
</li>
</ol>
</section>
|