A concept that was rejected by the client. Serves as a demo only and not to be put into production. Not responsive as just a POC
No likey. No lighty
A Pen by Jamie Coulter on CodePen.
| // Construct Single Node | |
| class Node { | |
| constructor(data, next = null) { | |
| this.data = data; | |
| this.next = next; | |
| } | |
| } | |
| // Create/Get/Remove Nodes From Linked List | |
| class LinkedList { |
A concept that was rejected by the client. Serves as a demo only and not to be put into production. Not responsive as just a POC
No likey. No lighty
A Pen by Jamie Coulter on CodePen.
| %h1.logo | |
| Solar explorer | |
| %span in only CSS | |
| %input.planet9{:type => 'radio', :id => 'pluto', :name => 'planet'} | |
| %label.pluto.menu{:for => 'pluto'} | |
| .preview | |
| .info | |
| %h2 | |
| .pip | |
| Pluto |
A Pen by Jack Rugile on CodePen.