I am a tech enthusiast, currently devouring any knowledge that I can about full-stack developing
I'm here to collaborate and learn with others
-
23:11
(UTC -06:00)
Pinned Loading
-
spooktober_challenge
spooktober_challenge PublicHalloween Codecademy challenge to post a snippet of code that has a playful October or Fall twist
HTML
-
intro-extro-club
intro-extro-club PublicThis was a project set in the full stack course in Codecademy. The project goal was to create a group or club page
HTML
-
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
2const createNums = num => {
3let numList = [];
4for (let i = 1; i <= num; i++) {
5numList.push(i);
-
Create a reverse array without array...
Create a reverse array without array reverse method 1// Write your code here:
2const reverseArray = (array) => {
3let newArray = [];
4for (let i = array.length - 1; i >= 0; --i) {
5if (i > 0 || i === 0) {
-
Combining String and Array methods i...
Combining String and Array methods in a function 1const shoutGreetings = (array) => {
2let tempArray = [];
34// 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);
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.