Usually when you create a variable you implicitly set the type by the value you use. Sometimes though you may want to explicitly set the variable type.
if you don’t give the variable a type you can do this:
PS> $x = 35
PS> $x
35
PS> $x = 'now… Read the full text.