(no title)
asiachick | 3 years ago
Many modern computer languages (JavaScript, Rust, Swift, ...) allow non-ascii identifiers so if you pick camelCase, then someone writing Japanese, Chinese, Korean has no way to obey. That doesn't mean snake_case would be all that better in those languages though.
var 画面_幅 = ...;
var 窓_縦 = ...;
The point is, both camelCase and snake_case are a thing based around western languages.
No comments yet.