This file contains hidden or 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
| 1 clear | |
| 2 cat intructions | |
| 3 clear | |
| 4 cd home | |
| 5 cd mehdi | |
| 6 cd Téléchargments | |
| 7 pwd | |
| 8 ls | |
| 9 cd Téléchargements | |
| 10 cat instructions |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"/> | |
| <title>FindThePrecious</title> | |
| </head> | |
| <body> | |
| <header> | |
| <h1>FindThePrecious.com</h1> |
This file contains hidden or 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
| .gris{ | |
| background-color: grey; | |
| } | |
| .orange{ | |
| background-color: orange; | |
| } |
This file contains hidden or 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
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <title>Testjavascript</title> | |
| </head> | |
| <body> | |
| <script src = "script.js"></script> | |
This file contains hidden or 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
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <!-- Required meta tags --> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
| <!-- Bootstrap CSS --> | |
| <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"> | |
| <link rel="stylesheet" href=""> | |
| <title>tddjavascripting</title> |
This file contains hidden or 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
| class person { | |
| constructor(name, age) { | |
| this.age = age; | |
| this.name = name | |
| } | |
| tellMyAge() { | |
| console.log(`I am ${this.age} years old`) | |
| } |
This file contains hidden or 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
| process.stdin.resume() | |
| process.stdin.setEncoding('utf8') | |
| console.log('how old are you ? ') | |
| process.stdin.on('data', (num) => { | |
| const year = 2019 | |
| if (num > 99) { | |
| console.log('too late!') |
This file contains hidden or 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
| var cowsay = require("cowsay"); | |
| console.log(cowsay.say({ | |
| text : "hello boy", | |
| e : "oO", | |
| T : "U " | |
| })); |
This file contains hidden or 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
| const assert = require('assert'); | |
| // ... Ton code ici ... | |
| class BankCustomer { | |
| constructor(name, code) { | |
| let codeSecret = code; | |
| let nameSecret = name; |
This file contains hidden or 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
| function hello(name) { | |
| console.log("Hello " + name); | |
| } | |
| var firstName = "bob"; | |
| hello(firstName); | |
| hello(firstName + " marley"); | |
| function concat(a, b) { | |
| return a + b; | |
| } | |
| var wcs = concat("Wild", concat("Code", "School")); |
OlderNewer