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

var internal_call_counter = 0;
function count_call() {
++internal_call_counter;
console.log("You have made " + internal_call_counter + " calls!");
}
module.exports = count_call;