My Current Project
I’m trying to make a terminal with jsQuery that has a log retrieval function.
My Problem
I don’t know how to
- Make the function use an argument instead of writing each command, one by one.
Here’s my code:
JavaScript
x
7
1
RETRIEVE 1: function() {
2
this.echo('Log one.');
3
},
4
RETRIEVE 2: function() {
5
this.echo('Log two.);
6
}
7
Advertisement
Answer
As I understand what you need is object, key values pair:
I used object instead of array, because they don’t need to be in order and some number may be missing.
JavaScript
1
11
11
1
var log = {
2
1: 'Log one.',
3
2: 'Log two.'
4
};
5
6
$('body').terminal({
7
RETRIEVE: function(logNumber) {
8
this.echo(log[logNumber]);
9
}
10
});
11