“JavaScript: Don’t judge me by my bad parts, learn the good stuff and stick with that!” — Eric Freeman Copy Share Image
“As of HTML5, you are allowed to use all numbers as an element id. As” — Eric Freeman Copy Share Image
“Joe: What’s the target? Judy: Like I said, it’s the element that generated the event. Like if you click on a specific image, the… — Eric Freeman Goals Copy Share Image
“If I had a dime for every time I’ve heard that one”, thought Larry, knowing that spec-change-no-problem was a fantasy. “And” — Eric Freeman Time Copy Share Image
“When you design, solve things in the simplest way possible. Your goal should be simplicity, not 'How can I apply a pattern… — Eric Freeman Design Copy Share Image
“Window is the global object. It may seem a little weird, but the window object acts as your global environment, so the… — Eric Freeman Copy Share Image
“Also notice that longitude West and latitude South are represented by negative values.” — Eric Freeman Copy Share Image
“an important thing to know about JavaScript: there’s one queue and one “thread of control,” meaning there is only one of me… — Eric Freeman Time Copy Share Image
“Composite Pattern takes the Single Responsibility design principle and trades it for transparency.” — Eric Freeman Copy Share Image
“A string is always a primitive unless you create it in a special way using an object constructor. We’ll talk about object… — Eric Freeman Copy Share Image
“The responsibility of the model is to store the state of the game and implement logic that modifies that state.” — Eric Freeman Responsibility Copy Share Image
“two forms of the Adapter Pattern: object and class adapters. Class adapters require multiple inheritance. You can implement more” — Eric Freeman Copy Share Image
“You’ve probably seen latitude and longitude specfied in both degrees/minutes/seconds, such as (47°38’34’’, 122°32’32’’), and in decimal values, such as (47.64, -122.54).… — Eric Freeman Copy Share Image