Skip to content

Instantly share code, notes, and snippets.

View sherazlodhi's full-sized avatar

Muhammad Sheraz Lodhi sherazlodhi

View GitHub Profile
class Student(){
constructor(id,name){
this.id =id;
this.name = name;
}
static totalMarks(marks1,marks2,marks3,marks4){
return marks1+marks2+marks3+marks4;
}
}