String은 생성자 string은 지정할 수 있는 string타입을 의미
var str: String = new String("Hello world"); // Uses the JavaScript String object var str: string = String("Hello World"); // Uses the TypeScript string type
ref: https://stackoverflow.com/questions/14727044/what-is-the-difference-between-types-string-and-string?rq=1