initial commit

This commit is contained in:
Shuvam Khamrui
2025-06-11 21:00:46 +05:30
commit df0e0f9481
191 changed files with 18146 additions and 0 deletions

14
node_modules/nodejs/1/singleobject.js generated vendored Normal file
View File

@@ -0,0 +1,14 @@
function Hello(){
var name;
this.setName=function(tyname){
name = tyname;
}
this.sayHello = function(){
console.log("Hello"+name);
}
}
module.exports = Hello;