This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Pour afficher des données | |
// Popup (pas très propre) | |
alert('Coucou'); | |
// Affichage sur la console | |
console.log('Coucou'); | |
// Remplacer le texte d'un Nœud HTML | |
var node = document.getElementById('node-id'); |