JSFiddle - React, Tailwind, and code Playground

by ChrisStanyon

TypeScript

"use strict"

class Sandbox {
  lhsValue: string;

  constructor() {
    this.lhsValue = ['value1', 'value2', 'value3'];
  }

  check() {
    console.log(typeof this.lhsValue);
    console.log('leftValue ' + < string > < any > this.lhsValue);
  }
}

let s = new Sandbox();
s.check();