Remix.run Logo
localuser13 3 hours ago

I think this notation is superior, because of syntax completion - get_name(user.id) can be syntax completed by IDE, (user.id)get_name can't. Just like "SELECT id, name FROM users" would be better of as "FROM users SELECT id, name" (LINQ in C# fixed this mistake, and most modern query languages do too).

borski 2 hours ago | parent [-]

…if you’re typing from left to right. :)