Quote by Eric Freeman Download Open image ““JavaScript: Don’t judge me by my bad parts, learn the good stuff and stick with that!”” — Eric Freeman ★ ★ ★ ★ ★ 4.3 out of 5 (5 ratings) Copy quoteShare
“If you want to learn more about the bad parts and how to use them badly, consult any other JavaScript book.” — Douglas Crockford Copy Share Image
“the truth is JavaScript actually makes two passes over your page: in the first pass it reads all the function definitions, and in the… — Eric Freeman Copy Share Image
When you have a good script you're almost in more trouble than when you have a terrible script. — Robert Downey, Jr Copy Share Image
“Learn everything you want to know, and then learn some more. Don't worry if something doesn't go well. You are capable of so much.” — Alina Bronsky Copy Share Image
“To learn something new, you need to try new things and not be afraid to be wrong.” — Roy T. Bennett Copy Share Image
“every mistake you make can teach you something, so there’s no end to learning.” — Ray Dalio Copy Share Image
“We’ve all had to rewrite the scripts of our lives the last few weeks. We’ve learnt a lot and we’ve had to figure out… — John Marsden Copy Share Image
“Sometimes it sucks, being good, because if you make a mistake then everybody makes a mistake and if something goes wrong it's your fault,… — Ibi Kaslik Copy Share Image
“When you delete a property, you’re not just deleting the value of the property, you’re deleting the property itself. And, if you try to… — Eric Freeman Copy Share Image
“when you assign a value to a variable name that hasn’t been previously declared, it is treated as a new, global variable. So be… — Eric Freeman Copy Share Image
“Web Workers have a global function named importScripts that you can use to import one or more JavaScript files into your worker. To” — Eric Freeman Copy Share Image
“If the two values have different types, try to convert them into the same type and then compare them” — Eric Freeman Copy Share Image
“Well, it’s a browser policy, and it says you can’t retrieve data from a domain that is different from the domain the page itself… — Eric Freeman Copy Share Image
“Math is not a constructor, or even a function. It’s an object. As you know, Math is a built-in object that you can use… — Eric Freeman Copy Share Image
“When you pass zero to setTimeout, you’re asking JavaScript to run your timeout handler as soon as it possibly can — and this leads… — Eric Freeman Copy Share Image
“JavaScript doesn’t have a character type. So characters are returned as new strings containing one character.” — Eric Freeman Copy Share Image
“Lexical scope means that we can determine the scope of a variable by reading our code.” — Eric Freeman Copy Share Image
“Q: Q: You said getElementsByTagName returns a list. Do you mean an array? A: A: It returns an object that you can treat like… — Eric Freeman Copy Share Image