Should I use a global variable and if not, what instead? (Javascript)

后端 未结 5 793
后悔当初
后悔当初 2020-12-30 17:02

I\'m working with several functions which need to pass a variable back and forth. Should I use a global variable or another method instead? I would also appreciate an exampl

5条回答
  •  佛祖请我去吃肉
    2020-12-30 17:45

    Avoid global variables, it's bad programming. Try pass it as an argument or use name spacing to restrict its scope.

提交回复
热议问题