La marque
Nike s'est inspirée de la Déesse grecque Athéna Niké, déesse magnifique et ailée.
Niké signifiant ''Victoire'' en grec, Athéna Niké était la Déesse de la victoire.
Un temple lui fut érigé au 5ème siècle avant Jésus Christ.
La légende raconte que les Grecs auraient placé la Déesse dans le temple, et lui auraient coupé les
ailes pour qu'elle ne puisse s'échapper et voler vers l'ennemi.
Symbole de victoire, la déesse est donc à l'origine de la marque
Nike !
Complement internaute :
Q:
What is the difference between the different ways of using the new operator in Javascript
I'm a newbie to javascript and I've been playing with the different ways to create objects.
I know that
var myobj = new myobj();
is a way to create an object, but what about
var myobj = new Object();
or
var myobj = Object();
Are these two the same?
A:
No, those are not the same. The first one will create a new object with the prototype of myobj, the second will create a plain Object instance.
If you're asking which one to use, use the first one:
var myobj = new myobj();
console.log(myobj);
The second one:
var myobj = Object();
console.log(myobj);
is useless.
A:
No, they are not the same.
First one, myobj = new myobj() will create a new object, and it will be the object myobj.