Skip to content

Latest commit

 

History

History
7 lines (7 loc) · 268 Bytes

examples.md

File metadata and controls

7 lines (7 loc) · 268 Bytes

Fun with reactive functions...

=MAP('hello', name => 'hello ' + name + '!!!')			
=MAP("bla", (a, b)  => a + ', ' + b)			
=MAP('concat', (...list) => list.join('; '))			50
=MAP('give', n => Array(n).fill(0).map((i, j) => j))			=concat.value( ...give.value(D3))