Code viewer for World: Word Methods (clone by ca4...

// Cloned by ca400test 1 on 19 May 2019 from World "Word Methods" by Alex Murphy 
// Please leave this clone trail here.
 
let word = 'Example';
//let output = word.slice(2,6);
//let output = word.split('');
//let output = word.endsWith('f');
let output = word.replace('ample', 'press');


function setup() {
    createCanvas(710, 400);
        $.getScript ( "uploads/alexmurphy1996/stringmethodes_code.js", function() {
            setup();
        });
}