Does white space slow the browser down in web coding like PHP, Javascript and stuff?

I use a lot of white space when I code so I can read/edit the code easier does all that white space slow down the browser or server?

Technically, yes; the more text the server and browser have to parse, including white space, the worse the performance.

Practically, no. We’re talking about a couple extra microseconds.