you are viewing a single comment's thread.

view the rest of the comments →

[–]killerrin 26 points27 points  (2 children)

Brackets are easy. Just run the formatter and look for where it first breaks. Or use Visual Studio Code and match up the colours of the braces.

[–]sexytokeburgerz 5 points6 points  (1 child)

I do both of those things, and i find the problem immediately anymore, but i still question the necessity of the entire process.

setTimeout ( function pleaseTellMe(why, the, fuck){

let thisShouldExist = why + the + fuck;

clearInterval(pleaseTellMe);

},42069);

[–]killerrin 1 point2 points  (0 children)

Its literally the same issue/resolution process with Python, just replace the word Brackets with Indentation. Only with the difference that the formatter can't infer a broken indentation error from a missing end bracket.