Sure, there can be spaces in property names, but then you have to enclose them in "
:
var meow = {
"one meow": function (t) { return "a"; },
two: function (t) { return "b"; },
three: function (t) { return "c"; }
};
When you want to access that property later, use the bracket syntax:
console.log( meow["one meow"]() );
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…