User Tools

Site Tools


getting_started:docs

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
getting_started:docs [2015/03/09 15:18]
octazid formated
getting_started:docs [2018/12/30 13:32]
182.1.60.113 [Documentation]
Line 1: Line 1:
-======Documentation====== +function indicator( v ) { 
-The docs section of the **[[ide|IDE]]** is a good place for newcomers to look to find out how DroidScript works.+    return v0 ]; 
 +
 +var arr = 'beep', 'boop', 'foo', 'bar' ];
  
-At the very leastyou should look at the first two sectionsIntroduction and Layouts.+var out = groupBy( arrindicator ); 
 +// returns { 'b': [ 'beep''boop', 'bar' ], 'f': [ 'foo' ] } 
 +function predicate( key, value ) { 
 +    return ( value > 1 ); 
 +}
  
 +var obj1 = {
 +    'a': 1,
 +    'b': 2,
 +    'c': 3
 +};
 +
 +var obj2 = omitBy( obj1, predicate );
 +// returns { 'a': 1 }
 =====Introduction===== =====Introduction=====
 Start here to find the very basics of the DroidScript app. Start here to find the very basics of the DroidScript app.
Line 24: Line 38:
   * [[built_in:checkboxes|CheckBoxes]]    * [[built_in:checkboxes|CheckBoxes]] 
   * [[built_in:Crypt]] Encrypt and decrypt text   * [[built_in:Crypt]] Encrypt and decrypt text
 +  * [[built_in:Database]]
   * [[built_in:Dialog]]   * [[built_in:Dialog]]
   * [[built_in:Downloader]]   * [[built_in:Downloader]]
getting_started/docs.txt · Last modified: 2021/07/25 09:14 by stevegarman