Is it possible to break JavaScript Code into several lines?

Is it possible to break JavaScript Code into several lines?

Yes, it is possible to distribute code chunks into multiple lines like the following example:

var abc = someverybiglineofmethodcall(a lot of args)

var abc =  
someverybiglineofmethodcall ( 
    a 
    lot 
    of 
    args 
)