fix: use const to declare variables in js

This commit is contained in:
S-N-O-R-L-A-X 2022-12-04 10:22:18 +08:00
parent b4991254df
commit a841a6fe42
2 changed files with 8 additions and 8 deletions

View File

@ -16,13 +16,13 @@ stack.push(5);
stack.push(4);
/* 访问栈顶元素 */
peek = stack[stack.length - 1];
const peek = stack[stack.length - 1];
/* 元素出栈 */
pop = stack.pop();
const pop = stack.pop();
/* 获取栈的长度 */
size = stack.length;
const size = stack.length;
/* 判断是否为空 */
is_empty = stack.length === 0;
const is_empty = stack.length === 0;

View File

@ -155,16 +155,16 @@ comments: true
stack.push(4);
/* 访问栈顶元素 */
peek = stack[stack.length-1];
const peek = stack[stack.length-1];
/* 元素出栈 */
pop = stack.pop();
const pop = stack.pop();
/* 获取栈的长度 */
size = stack.length;
const size = stack.length;
/* 判断是否为空 */
is_empty = stack.length === 0;
const is_empty = stack.length === 0;
```
=== "TypeScript"