You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let value : any; // ok javascript like
(<string[]>value).length // why not (value<string[]>).length
< string[] > value is more c# like : (string[])value in c#
Why not using a javascript style for typing and type casting: always put typing at the end of the expression ? (I mean "javascript style" because :any signature seems to be adopted)
Thanks in advance for your answers.
The text was updated successfully, but these errors were encountered:
Hello,
Here is my code example:
< string[] > value is more c# like : (string[])value in c#
Why not using a javascript style for typing and type casting: always put typing at the end of the expression ? (I mean "javascript style" because :any signature seems to be adopted)
Thanks in advance for your answers.
The text was updated successfully, but these errors were encountered: