Skip to content

Instantly share code, notes, and snippets.

View harveytoro's full-sized avatar

Harvey harveytoro

View GitHub Profile
@harveytoro
harveytoro / technical-challenge.ts
Created August 31, 2022 00:27
Basic Execution: tsc technical-challenge.ts; node technical-challenge.js
// API
class Form {
public identifier: string;
public fields: Field<FieldValue>[] = [];
constructor(){
// basic identifier implementation for POC
this.identifier = Math.random().toString(16).substring(2)