Command
What commands will do is up to you! But, first, they'll need a name...
var Command = Command; var command = "welcome";command { // Here, `this` is the execution context, and provides: // - current command, // - execution occurrence, // - parameters ;};
Command Queue
Command queues have not much on their shoulders so far: they just trigger the "commandPushed
" & "commandRemoved
" events when commands are pushed into or removed from them.
var queue = ; queue; queue;