1. Github Gist https://gist.github.com/
2.Carbon https://carbon.now.sh/
3. color scripter https://colorscripter.com/
1
2
3
4
5
6
7
|
let functionName = (argument1, arg2, ...argN) => expression;
let double = (n) => n * 2;
let double = function(n) {
return n*2;
}
|
cs |