JSFiddle - React, Tailwind, and code Playground
by sushant_ceb
JavaScript
var studentMarks = {
math:0,
eng:0,
total: 0,
computeMarks: function(math, eng) {
//console.log()
this.math = math;
this.eng = eng;
this.total = math + eng;
}
}
var setmarks = function(score1, score2, callback) {
callback(score1, score2);
}
setmarks(10, 20, studentMarks.computeMarks.bind(studentMarks));
console.log(studentMarks.total);