https://github.com/carl-hugo/javascriptcheatsheet
JavaScript Cheat Sheet pour débutant (for beginner)
https://github.com/carl-hugo/javascriptcheatsheet
Last synced: 10 months ago
JSON representation
JavaScript Cheat Sheet pour débutant (for beginner)
- Host: GitHub
- URL: https://github.com/carl-hugo/javascriptcheatsheet
- Owner: Carl-Hugo
- License: mit
- Created: 2016-07-07T20:52:42.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-08-19T14:19:38.000Z (over 9 years ago)
- Last Synced: 2025-01-06T09:29:22.175Z (12 months ago)
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# JavaScript Cheat Sheet pour débutant (for beginner)
Si vous avez des idées de syntaxe à ajouter à la cheat sheet, n'hésitez pas a créer une nouvelle discussion ("Issue") ou à bonifier une discussion existante en y ajoutant votre opinion.
Pour l'instant je vais ajouter les blocs de syntaxe JavaScript dans le fichier actuel et si le besoin s'en fait sentir, je ferai une réorganisation du "repo". Vous pouvez partager votre opinion sur l'organisation du "repo" en créant une nouvelle discussion.
**Roadmap**: Il serait bien d'avoir une première version avant le 11 décembre 2016. Voir "[Milestones](https://github.com/Carl-Hugo/JavaScriptCheatSheet/milestones)".
## Table des matières
1. Syntaxe JavaScript de base
1. [Variables](#variables)
1. [Fonction](#fonctions)
1. à venir...
1. Syntaxe JavaScript avancé
1. à venir...
## Syntaxe JavaScript de base
### Variables
Brève explication portant sur les variables ici...
```JavaScript
var nom_de_la_variable;
var nom_de_la_variable = "valeur de type string"; // string
var nom_de_la_variable = 123; // numeric (int)
var nom_de_la_variable = 15.55; // numeric (float)
var nom_de_la_variable = true; // boolean
```
### Fonctions
...
## Syntaxe JavaScript avancé
...