Skip to content
View MariaRoDigital's full-sized avatar
  • 23:11 (UTC -06:00)

Block or report MariaRoDigital

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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. spooktober_challenge spooktober_challenge Public

    Halloween Codecademy challenge to post a snippet of code that has a playful October or Fall twist

    HTML

  2. intro-extro-club intro-extro-club Public

    This was a project set in the full stack course in Codecademy. The project goal was to create a group or club page

    HTML

  3. Codecademy Javascript Iterator revie... Codecademy Javascript Iterator review extra challenges, these are my responses to them
    1
    // Define a callback function before you use an iterator
    2
    const createNums = num => {
    3
      let numList = [];
    4
      for (let i = 1; i <= num; i++) {
    5
        numList.push(i);
  4. Create a reverse array without array... Create a reverse array without array reverse method
    1
    // Write your code here:
    2
    const reverseArray = (array) => {
    3
      let newArray = [];
    4
      for (let i = array.length - 1; i >= 0; --i) {
    5
        if (i > 0 || i === 0) {
  5. Combining String and Array methods i... Combining String and Array methods in a function
    1
    const shoutGreetings = (array) => {
    2
      let tempArray = [];
    3
      
    4
    //   this is one of the variables I came up with while attempting to create this function
    5
    //   const lastIndex = array.forEach((element) => element.length - 1);