Tagged in

JavaScript

therobinkim
therobinkim
let’s learn
More information
Followers
22
Elsewhere
More, on Medium

ab: Apache HTTP server benchmarking tool

ab is a tool for benchmarking your Apache HTTP server. (source)

I saw Ryan Dahl’s Introduction to Node presentation where he used the ab command line utility.


Perils of Omitting “var”

Note: This was originally posted on my blog at https://therobinkim.com/blog/perils-of-omitting-var. Any updates will appear there and not here.

A JavaScript app will run whether you precede variable declarations with var. However, when you're creating new…


Hoist!

Note: This was originally posted on my blog at https://therobinkim.com/blog/hoist. Any updates will appear there and not here.

You will learn:

  1. A variable declaration is hoisted.
  2. A variable initialization is not hoisted.