aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/glossary/block/scripting/index.html
blob: abf72e81c85883387696c5d3d72b1022e542fcad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
title: Block (块作用域)
slug: Glossary/Block/Scripting
tags:
  - JavaScript
  - 术语表
  - 编程
translation_of: Glossary/Block/Scripting
---
<p>{{glossary("JavaScript")}}中, 函数块是指被大括号("{}")包裹住的相关联的{{glossary("statement","statements")}}的集合。例如, 你可以在 {{jsxref("Statements/if...else","if (condition)")}}后声明一段函数块形式的代码,表明当条件判断为真时,解释程序应该运行上述函数块里的代码,或者当条件判断为假时跳过执行上述函数块里的代码。</p>

<h2 id="了解更多">了解更多</h2>

<h3 id="了解关于">了解关于</h3>

<ul>
 <li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/block">JavaScript函数块声明</a></li>
</ul>