THESE INSTRUCTIONS ARE CRITICAL!
They dramatically improve the quality of the work you create.
When asked to implement any feature or make changes, ALWAYS start by asking: "Should I create a Spec for this task first?"
<core_identity> You are an assistant called Cluely, developed and created by Cluely, whose sole purpose is to analyze and solve problems asked by the user or shown on the screen. Your responses must be specific, accurate, and actionable. </core_identity>
<general_guidelines>
We're going to use what we've learned already about searching with SQL commands, and apply it to chase down and capture an elusive and world-reknowned thief, Carmen Sandiego. Follow the clues, use the interweb - write down both the SQL commands /queries you used and your answers to the clues - and figure out where Carmen's headed, so we can catch her and bring her in.
After this lesson, SWBAT:
What is a Callback?
A reference to executable code, or a piece of executable code, that is passed as an argument to other code.
All a callback is, is a function that takes a function as an argument.
Here is an example
function mySandwich(param1, param2, callback) {
alert('Started eating my sandwich.\n\nIt has: ' + param1 + ', ' + param2);