diff options
author | Tommaso <p.tommy93@gmail.com> | 2015-10-18 13:26:58 +0200 |
---|---|---|
committer | Tommaso <p.tommy93@gmail.com> | 2015-10-18 13:26:58 +0200 |
commit | 1aaf79b6e56b7d4947335dd60613f8096b66b0d9 (patch) | |
tree | 3a4970ddb927e74f0e0f397228730f08ff32f61f /it-it/coffeescript-it.html.markdown | |
parent | 35b921505b38ff3686c79826aadde9847e9b2f53 (diff) |
[coffeescript/it] Bring this version up to date with the english one
The following commits were taken into consideration and translated into italian:
7afadb01811e1fb97a928a0e2d8b1a3b7a3a42f6
960ee4a1856db8eadb96277bb2422edfa8f2a81c
a67d9d9e0ed3d351ce0139de18a4b212b47ab9cb
d115a86ac8602c680a059e7a53d227cbccdf157a
ef40704f9b66ae85d7a8a6853abbbf8810af3b90
Diffstat (limited to 'it-it/coffeescript-it.html.markdown')
-rw-r--r-- | it-it/coffeescript-it.html.markdown | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/it-it/coffeescript-it.html.markdown b/it-it/coffeescript-it.html.markdown index 16eb9bd4..d30ba819 100644 --- a/it-it/coffeescript-it.html.markdown +++ b/it-it/coffeescript-it.html.markdown @@ -59,34 +59,34 @@ matematica = quadrato: quadrato cubo: (x) -> x * quadrato x #=> var matematica = { -# "radice": Math.sqrt, -# "quadrato": quadrato, -# "cubo": function(x) { return x * quadrato(x); } -#} +# "radice": Math.sqrt, +# "quadrato": quadrato, +# "cubo": function(x) { return x * quadrato(x); } +# } # Splats: gara = (vincitore, partecipanti...) -> print vincitore, partecipanti #=>gara = function() { -# var partecipanti, vincitore; -# vincitore = arguments[0], partecipanti = 2 <= arguments.length ? __slice.call(arguments, 1) : []; -# return print(vincitore, partecipanti); -#}; +# var partecipanti, vincitore; +# vincitore = arguments[0], partecipanti = 2 <= arguments.length ? __slice.call(arguments, 1) : []; +# return print(vincitore, partecipanti); +# }; # Esistenza: alert "Lo sapevo!" if elvis? #=> if(typeof elvis !== "undefined" && elvis !== null) { alert("Lo sapevo!"); } # Comprensione degli Array: -cubi = (matematica.cubo num for num in lista) +cubi = (matematica.cubo num for num in lista) #=>cubi = (function() { -# var _i, _len, _results; -# _results = []; -# for (_i = 0, _len = lista.length; _i < _len; _i++) { -# num = lista[_i]; -# _results.push(matematica.cubo(num)); -# } -# return _results; +# var _i, _len, _results; +# _results = []; +# for (_i = 0, _len = lista.length; _i < _len; _i++) { +# num = lista[_i]; +# _results.push(matematica.cubo(num)); +# } +# return _results; # })(); cibi = ['broccoli', 'spinaci', 'cioccolato'] |