Exercice 1 16h40

This commit is contained in:
JunkJumper
2020-01-22 16:40:43 +01:00
parent f15688ceaf
commit b51378e29a
6 changed files with 90 additions and 0 deletions

14
TD1/js/main.js Normal file
View File

@ -0,0 +1,14 @@
console.log("JavaScript is linked");
function init(){
sayHello();
defTitre1();
}
function defTitre1(){
console.log(defTitre1());
}
function sayHello() {
console.log("Hello Everypony !");
}