Difference between revisions of "P5js-Dom-Textarea"

From Digipool-Wiki
Jump to: navigation, search
(Created page with "<pre> myInput = createElement('textarea', 'your text here'); </pre>")
 
Line 2: Line 2:
  
 
myInput = createElement('textarea', 'your text here');
 
myInput = createElement('textarea', 'your text here');
 +
 +
myString = myInput.value();
  
 
</pre>
 
</pre>

Revision as of 23:25, 20 June 2020


myInput = createElement('textarea', 'your text here');

myString = myInput.value();