I’ve noticed in a recent article on TDWTF that someone was using the variable name lsSQL . I have also noticed similar variable names in a legacy application I am working on and in other places around the web, but I have never found out what the ls prefix stands for.
What does ls mean? What kind of notation is that?
Thanks,
Tom
I would expect that this is a usage of Hungarian notation is Basic-like language (i.e. without strong typing). Here I would expect
lto denote something like “local variable” as opposite to “argument” or “global variable”, andsto denote type i.e. string here.