#web-development
Read more stories on Hashnode
Articles with this tag
#1 Prefer unknown over any See this example on how any could go wrong. const a: any = "dhslkd" a.someMethod() // Runtime Error: a.someMethod is not a...