mirror of
https://github.com/wu736139669/Monkey-Test.git
synced 2026-08-05 05:55:46 +00:00
17 lines
160 B
JavaScript
17 lines
160 B
JavaScript
"use strict";
|
|
|
|
var x = 3;
|
|
let x = 4;
|
|
const x = 5;
|
|
|
|
function f() {
|
|
let f = 1;
|
|
function f() {
|
|
}
|
|
|
|
const y = 1;
|
|
if (1) {
|
|
var y;
|
|
}
|
|
}
|