Skip to content
View leonardo-astete's full-sized avatar

Block or report leonardo-astete

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Career-path-Front-End-Engineer Career-path-Front-End-Engineer Public

    Front-End Engineer - Codecademy projects and daily practice

  2. Secret Message - JavaScript Array Me... Secret Message - JavaScript Array Methods Practice Codecademy project: Transform an array of strings into a secret message by discovering and applying the right array methods (pop, push, splice, shift, unshift, join, etc.).
    1
    let secretMessage = ['Learning', 'is', 'not', 'about', 'what', 'you', 'get', 'easily', 'the', 'first', 'time,', 'it', 'is', 'about', 'what', 'you', 'can', 'figure', 'out.', '-2015,', 'Chris', 'Pine,', 'Learn', 'JavaScript'];
    2
    
                  
    3
    // remove last string
    4
    secretMessage.pop();
    5
    
                  
  3. ride-the-bus ride-the-bus Public

    Game Maker Language

  4. Whale Talk translator - Nested loops... Whale Talk translator - Nested loops, conditionals, and array methods to convert text to whale language
    1
    // Whale Talk - JavaScript Loops & Array Methods Practice
    2
    //
    3
    // Codecademy project: String-to-whale-language translator using nested for loops to iterate through input text and vowels array.
    4
    // Implements conditional logic to double specific vowels (e, u), array push method, and string joining/capitalization.
    5
    //