Programming Tips - How can I catch typos in variable names?

Date: 2015feb27 Language: javaScript Q. How can I catch typos in variable names? A. Start scripts with:
'use strict';
All javaScript should begin this way. It catches problems besides typos.