This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function submitForm (event) { | |
event.preventDefault(); | |
console.log(`Form submitted!`); | |
const name = document.querySelector('[name]').value; | |
console.log(`The name is --> `, name); | |
// Do anything else you want here | |
formClass.reset(); // <-- Our *new* money line | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function submitForm (event) { | |
event.preventDefault(); // <-- This is the money line | |
console.log(`Form submitted!`); | |
const name = document.querySelector('[name]').value; | |
console.log(`The name is --> `, name); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Create a variable that selects the form | |
let formClass = document.querySelector('.form-class') | |
// Define what happens on form submission | |
function submitForm(event) { | |
console.log(`Form submitted!`); | |
// The name the user types into the form. | |
const name = document.querySelector('[name]').value; | |
console.log(`The name is --> `, name); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div> | |
<form class="form-class"> | |
<input type="text" name="customer" placeholder="Your Name" required> | |
<input type="submit"> | |
</form> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div> | |
<form class="form-class"> | |
<input type="text" name="customer" autocomplete="off" placeholder="Your Name" required> | |
<input type="submit"> | |
</form> | |
</div> | |
<script> | |
console.log(`The path is --> `, window.location.pathname); | |
let formClass = document.querySelector('.form-class'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* removeLinkedListDuplicates: Removes duplicates from an unsorted linked list. | |
* Return value is a linked list with duplicates removed. | |
* @param {Object} linkedList - The linkedList to remove duplicates from. | |
* @param {Object} [currentNode] - The currently evaluated node | |
* @param {Object} [previouslySeen] - An object storing the values of all previously seen nodes | |
*/ | |
function removeLinkedListDuplicates(linkedList, currentNode, previouslySeen ) { | |
currentNode = currentNode || linkedList.head; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* The description begins here. | |
* More description continues here. | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Foo takes any argument. | |
* The return value is 'baz' in all cases. | |
* @param {*} bar - Any argument | |
* @param {string} [optionalArg] - An optional argument that is a string | |
*/ | |
function foo(bar, optionalArg) { | |
return 'baz'; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div.notes { | |
font-family: sans-serif; | |
background: #ffc600; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#An alias to naviage up one directory level | |
alias up='cd ..' |