Sound just stop working for you? Here's the quick fix that worked for me: Open the Terminal app or search with ⌘+Space, type Terminal and hit Return.Once Terminal opens, copy and paste the command below. 3. Hit Return then type your password, then hit Return again This will restore sound …
tips
JavaScript Replace Text
If you ever get into a situation where a string is received with some text that either shouldn't be there, or is in there incorrectly, here's a quick solution for that, use String.replace(): …
Javascript When to use “let” and when to use “var”
In many circumstances, let and var can seem to be used interchangeably. This, however, is not the case. Here's some great write-ups on stack overflow about the matter: https://stackoverflow.com/questions/762011/whats-the-difference-between-using-let-and-var …