Skip to content

Instantly share code, notes, and snippets.

View InAvision76's full-sized avatar

Sean Lawless InAvision76

  • InAvision Media
  • Texas
View GitHub Profile
@InAvision76
InAvision76 / index.html
Created January 6, 2021 20:26
JS Challenge: MicroTweet
<input type="text" onkeyup="fixLength()" />
<hr />
<p>This Code Challenge is intended to give you more practice with event listeners, as well as introduce you to the concept of string methods and give you practice with researching and using built-in JavaScript methods.</p>
<p>You will only need to update the code in the JS section of this Codepen to complete this challenge.</p>
<h3>Code Challenge</h3>
<ul>
<li>
@InAvision76
InAvision76 / code-challenge-js-arrow-function-writing-drills.markdown
Created January 6, 2021 19:58
Code Challenge: JS - Arrow Function Writing Drills
@InAvision76
InAvision76 / code-challenge-bootstrap-radio-button-group.markdown
Created December 31, 2020 03:48
Code Challenge: Bootstrap Radio Button Group
@InAvision76
InAvision76 / code-challenge-js-review-if-and-switch.markdown
Created December 31, 2020 03:48
Code Challenge: JS Review - If and Switch
@InAvision76
InAvision76 / code-challenge-js-review-loops-and-arrays.markdown
Created December 31, 2020 03:48
Code Challenge: JS Review - Loops and Arrays
@InAvision76
InAvision76 / code-challenge-bootstrap-and-jquery.markdown
Created December 31, 2020 03:47
Code Challenge: Bootstrap and jQuery
@InAvision76
InAvision76 / script.js
Created December 31, 2020 03:46
zYBJzPX
var ourArray = [];
for (var i = 0; i < 5; i++) {
ourArray.push(i);
}
console.log(ourArray);
@InAvision76
InAvision76 / code-challenge-variables-and-functions-practice.markdown
Created December 31, 2020 03:46
Code Challenge: Variables and Functions Practice
@InAvision76
InAvision76 / find-the-smiley-face-another-js-game.markdown
Created December 31, 2020 03:45
Find the smiley face: Another JS Game

Find the smiley face: Another JS Game

This is a one player game written in JavaScript. The game presents two groups of smiley faces side by side. The groups are identical in all respect except the left side has an extra face. The player's task is to find the extra face on the left and click on it.

A Pen by Sean Lawless on CodePen.

License.

@InAvision76
InAvision76 / exercise-html-tables.markdown
Created December 31, 2020 03:45
Exercise: HTML Tables