Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

7 righe
162 B

  1. var not = require("..")
  2. , truth = function () { return true }
  3. , lies = function () { return false }
  4. // false true
  5. console.log(not(truth)(), not(lies)())