DEV Community

Discussion on: How do you format curly braces? {}

Collapse
 
yechielk profile image
Yechiel Kalmenson • Edited

My personal favorite:


func myFunction()                                               {

    if(something)                                               {
        doSomething()                                           }
    else                                                        {
        doSomethigElse()                                       }}
Enter fullscreen mode Exit fullscreen mode

Though in a more serious note, there's no "right" way. Different languages have different conventions and following the convention is more important than any perceived benefit of doing it one way or the other.

Collapse
 
dynamicsquid profile image
DynamicSquid

You need help

Collapse
 
sprabhakaran profile image
Prabhakaran S

WTH?