while(condition)
{
}
I've been coding a lot of javascript lately and think that kind of formatting isn't consistent/attractive anymore with lambda functions, so now I'm back to using
while(condition){
}
as the default for anything javascript. I still use the former for PHP and Java though, it may change to the latter sooner or later.