Skip to content

Instantly share code, notes, and snippets.

View Over-knight's full-sized avatar
💪
Working from School, Open to work.

Victor Irabor Over-knight

💪
Working from School, Open to work.
  • NITHUB Nigeria
  • Lagos, Nigeria
  • 03:52 (UTC -12:00)
View GitHub Profile
class ArrayJoy {
elements: string[];
private length: number
private index :number;
constructor(elements: string[]){
this.elements = elements;
this.length = elements.length;
if (elements.length === 0) {
// class LNode {
// value: number;
// next: LNode | null;
// constructor(value: number) {
// this.value = value;
// this.next = null;
// }
// }