Typescript variables: Difference between revisions

From wikinotes
(Created page with "= Assignment = <blockquote> <syntaxhighlight lang="typesript"> let name: string = "alex"; </syntaxhighlight> </blockquote><!-- Assignment --> = Scope = <blockquote> </blockquote><!-- Scope -->")
 
Line 1: Line 1:
= Assignment =
= Assignment =
<blockquote>
<blockquote>
<syntaxhighlight lang="typesript">
<syntaxhighlight lang="typescript">
let name: string = "alex";
let name: string = "alex";
</syntaxhighlight>
</syntaxhighlight>

Revision as of 03:07, 11 December 2022

Assignment

let name: string = "alex";

Scope