Does variables typing help to increase game performance?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By NoSleep

Does variables typing (typization) help to increase script and then game performance?
Like, would script:

var gm: Array = ["a", "b", "c"]
func do():
   gm.append("d")

Work better than

var gm = ["a", "b", "c"]
func do():
   gm.append("d")
:bust_in_silhouette: Reply From: skysphr

No but in 4.0 it will (source)

Thank you, now I will write typed code and wait for 4.0

NoSleep | 2021-09-05 19:09

“I will … wait for 4.0” - I said once… Wait for 4.0…

NoSleep | 2022-11-20 16:35