You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
181 B
JavaScript
8 lines
181 B
JavaScript
7 months ago
|
var internal_call_counter = 0;
|
||
|
|
||
|
function count_call() {
|
||
|
++internal_call_counter;
|
||
|
console.log("You have made " + internal_call_counter + " calls!");
|
||
|
}
|
||
|
|
||
|
module.exports = count_call;
|