<!DOCTYPE html> <html> <body> <p>débuggez-moi!!</p> <button onclick="maFonction()">Allez-y!</button> <p id="afficheIci"></p> <script> function maFonction() { var randomVersion = Math.round(Math.random()+1); var resultat; console.log(randomVersion); if (randomVersion == 1) { var c = document.getElementById("myCanvas"); var contexte = c.getContext("2d"); contexte.moveTo(0,0); contexte.lineTo(200,100); contexte.stroke(); } else { resultat = "seconde fonction"; } document.getElementById("afficheIci").innerHTML = resultat; } </script> </body> </html>