Hi I am learning typescript.
I have in my code.
var name:string="Hello world";
console.log(name);
while compile time I am getting this error.
error TS2451: Cannot redeclare block-scoped variable 'name'.
index.ts(4,5): error TS2451: Cannot redeclare block-scoped variable 'name'.
Can someone describe me why I am getting this error?
namein scope.