Merge Datatypes with Operators?
Should datatype pages be merged with their appropriate operator pages? They seem to be mostly quite stubby to me. The ones with more methods have less operators, so it should balance out. — Twey 07:14, 17 October 2008 (UTC)
- Done for this one. Unless you have an objection, the operator pages will remain in "Category:Operators" and redirect to [Datatype]#Operators. --Jesdisciple (talk) 17:12, 17 October 2008 (UTC)
Difference between "Boolean" and "boolean"?
I was under the impression that "boolean" didn't exist in JS like it does in Java... Is that incorrect? --Jesdisciple (talk) 18:36, 17 October 2008 (UTC)
- Yes, it is incorrect. Just as in Java, for each primitive (such as 3, 5, true) there exists an object capable of wrapping that primitive (such as new Number(3), new Number(5), new Boolean(true)). This can sometimes be important. — Twey 01:51, 18 October 2008 (UTC)