add 2048 game

This commit is contained in:
hamid zarghami
2025-12-09 10:20:15 +03:30
parent 803f104307
commit 8119203506
15 changed files with 1928 additions and 3 deletions
+9
View File
@@ -0,0 +1,9 @@
Function.prototype.bind = Function.prototype.bind || function (target) {
var self = this;
return function (args) {
if (!(args instanceof Array)) {
args = [args];
}
self.apply(target, args);
};
};