Skip to content

Instantly share code, notes, and snippets.

View Oleksii-Kravtsov's full-sized avatar
▶️

Oleksii Kravtsov Oleksii-Kravtsov

▶️
View GitHub Profile
function print(text = ""){ console.log(text)}
Array.prototype.pushAlex = function(element){
//it works lmaoo
this[this.length] = element
return this.length
}