Skip to content

Instantly share code, notes, and snippets.

View jessycormier's full-sized avatar
🇨🇦
Oh, hello there, wanna build something cool?

Jessy jessycormier

🇨🇦
Oh, hello there, wanna build something cool?
View GitHub Profile
@jessycormier
jessycormier / create-ie10-object.js
Last active May 15, 2020 13:16
[Object Create for IE] how to define an object in IE10 #InternetExplorer #IE10
// For <IE10 Support of object.create
if (Object.create === undefined) {
Object.create = function (o) {
function F() { }
F.prototype = o;
return new F();
};
}