Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Promit #26

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 14 additions & 7 deletions exercises/part1-selectors-and-events/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,35 +11,39 @@ below so that the results all read "Success!".

import { htmlToElement } from './template-tools.js';

let counter = 0;

/* ====================
Part 1: Set the variable below equal to the paragraph element representing the
first test result.
==================== */

let firstResult;
let firstResult = document.querySelector('#result-1');

/* ====================
Parts 2: Set the variable below equal to a collection of the paragraph
elements representing the 2nd and 3rd results.
==================== */

let secondAndThirdResults;
let secondAndThirdResults = document.getElementsByClassName('result-2-3');

/* ====================
Parts 3: Set the variable below equal to a collection of the paragraph
elements representing the all of the results.
==================== */

let allResults;
let allResults = firstResult + " " + secondAndThirdResults;

/* ====================
Part 4: Add an event listener to the button in problem 4 that changes the
button's own text to "I'm Clicked!"
==================== */

let imClickedButton;
let imClickedButton = document.querySelector('#im-clicked-button');
if (imClickedButton) {
imClickedButton.addEventListener('click', () => {});
imClickedButton.addEventListener('click', () => {
imClickedButton.textContent = "I'm Clicked!"
});
}

/* ====================
Expand All @@ -56,9 +60,12 @@ HINT: You may need some global state for this problem.
let spanContainer = document.querySelector('#span-container');
spanContainer.appendChild(htmlToElement('<span>0</span>'));

let addSpanButton;
let addSpanButton = document.querySelector('#add-span-button');
if (addSpanButton) {
addSpanButton.addEventListener('click', () => {});
addSpanButton.addEventListener('click', () => {
counter = counter + 1;
spanContainer.textContent = counter;
});
}

/* =====================
Expand Down