An open API service indexing awesome lists of open source software.

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)

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é
...