"Owning a computer without programming is like having a kitchen and using only the microwave oven." - Charles Petzold
  The difference between theory and practice is smaller in theory than in practice
  JavaScript has a single type for numbers, represented as 64-bit floating point Integers are also represented using this same type
  "It's OK to figure out murder mysteries, but you shouldn't need to figure out code. You should be able to read it." - Steve McConnell
  "An expert is a man who has made all the mistakes that can be made in a very narrow field." - Niels Bohr
  3 JavaScript interview questions How to know if the event.preventDefault() method was used in an element? What is async/await and how does it work? How to check if a value is an Array?
  Software is about working applications Methodologies, languages, operating systems, frameworks, etc. are secondary
  Merkle trees, also known as binary hash trees, are a type of binary tree. hey can be used to efficiently verify the integrity of large sets of data. They are used in both blockchain and non-blockchain-related projects.
  Never attribute to malice that which can be adequately explained by stupidity.
  3 JavaScript interview questions How to check if a certain property exists in an object? How to check if a value is falsy? What's the difference between Object.seal and Object.freeze methods?
  Don't go blind. Use a profiler. "Premature optimization is the root of all evil" - Donald Knuth
  Programmers are good at finding valid reasons for making poor decisions
  "How do we convince people that in programming simplicity and clarity βin short: what mathematicians call "elegance"β are not a dispensable luxury, but a crucial matter that decides between success and failure?" - Edsger W. Dijkstra