英文:
Variable declaration Typescript
问题
无法重新声明具有范围“块”的变量'greet'。我开始学习TypeScript,当声明变量和变量类型并运行以查看结果时,它返回错误-无法重新声明具有范围“块”的变量'greet'。
英文:
Cannot re-declare variable 'greet' with scope 'Block'.
I started learning Typescript, and when declared variable and variable type and launched to see result, it returned error
- Cannot re-declare variable 'greet' with scope 'Block'.
答案1
得分: 0
将您的文件转换为ES模块,就像这样:
// ✅ 变量成功声明
const name = '编程之美';
console.log(name); // 编程之美
export {};
或者
您可以使用带有花括号的嵌套块来实现这一点:
let color = '红色';
{
let color = '黄色';
console.log(color); // 黄色
}
console.log(color); // 红色
英文:
Convert your file to an ESModule, like this:
// ✅ variable declared successfully
const name = 'Coding Beauty';
console.log(name); // Coding Beauty
export {};
Or
You can do this by using nested block designated with curly braces:
let color = 'red';
{
let color = 'yellow';
console.log(color); // yellow
}
console.log(color); // red
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论