17-08-2010, 11:32 PM
(Modification du message : 17-08-2010, 11:34 PM par Sephi-Chan.)
Les Hashtable (souvent appelés hash) sont ce qu'on appelle parfois des tableau associatif, en opposition aux tableaux indexés.
Sephi-Chan
$sword = array('attack' => 10, 'defense' => 0); // PHP
sword = { :attack => 10, :defense => 0 } // Ruby
sword = { attack: 10, defense: 0 }; // Javascript, et oui, c'est un objet !
Sephi-Chan