Horizontal animation of a cards section, where the cards width is not 100%
This file contains hidden or 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
| class LinkedList { | |
| constructor() { | |
| this.length = 0; | |
| this.head = null; | |
| } | |
| insert(index, value) { | |
| if (index < 0 || index > this.length) { | |
| throw new Error('index error'); |
This file contains hidden or 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
| // Count Sheep | |
| var countSheep = function(n){ | |
| if (n === 0){ | |
| return; | |
| } | |
| console.log("Another sheep jumps over the fence " +n); | |
| countSheep(n-1) | |
| } |
This file contains hidden or 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
| // STRING DRILLS | |
| // Wiseperson Generator | |
| https://jsbin.com/nisulo/edit?js,console | |
| //Shouter | |
| https://jsbin.com/yarefu/edit?js,console | |
| //Text Normallizer | |
| https://jsbin.com/lomipi/edit?js,console |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <link href="http://code.jquery.com/qunit/qunit-git.css" rel="stylesheet" type="text/css" /> | |
| <script src="http://code.jquery.com/qunit/qunit-git.js"></script> | |
| <meta charset="utf-8"> | |
| <title>Loops Exercises 1 (Arrays)</title> | |
| <link rel="stylesheet" href="http://code.jquery.com/qunit/qunit-1.15.0.css"> | |
| </head> | |
| <body> |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta name="description" content="HTML Tables"> | |
| <meta charset="utf-8"> | |
| <title>HTML Tables</title> | |
| <link rel="stylesheet" href="table-style.css"> <style id="jsbin-css"> | |
| body { | |
| font-size: 16px; |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta name="description" content="HTML Tables"> | |
| <meta charset="utf-8"> | |
| <title>HTML Tables</title> | |
| <style id="jsbin-css"> | |
| body { | |
| font-family: Helvetica, sans-serif; | |
| } |