質問

I'm following melon js tutorial. This is at the top of my HUD.js file.

game.HUD = game.HUD || {}

I've seen this before in other examples. What does the namespace.something = namespace.something || {} syntax mean and why is it needed?

役に立ちましたか?

解決

|| is a null coalesce operator so you are saying in that line return my object if it already exists or a new object if it does not (is null)

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top