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
| [ | |
| { | |
| "start":"2023-07-28 00:00:01", | |
| "end":"2023-08-04 23:59:00", | |
| "hash":"dec06622-980f-4674-8b08-72e23cc9e70g", | |
| "dismissible":1, | |
| "content":"<p>Biggest Sale of the year on this</p><h3>Black Friday & Cyber Monday</h3><p>Claim your discount on till 4th December</p>", | |
| "wrapperPadding":"85px 0", | |
| "backgroundImage":"https://webappick-assets.s3.amazonaws.com/notice/wapk-promo-bg.svg", | |
| "backgroundRepeat":"no-repeat", |
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
| // Construct Single Node | |
| class Node { | |
| constructor(data, next = null) { | |
| this.data = data; | |
| this.next = next; | |
| } | |
| } | |
| // Create/Get/Remove Nodes From Linked List | |
| class LinkedList { |