Please select correct basic types that are available in TypeScript:
Respuesta
number, null, binary, string, boolean
string, boolean, enum, null, never
boolean, char, string, number
boolean, number, int, enum, void
Pregunta 2
Pregunta
Please select correct TypeScript variable declarations. Choose all that apply.
Respuesta
x = "My String";
let z = "My String";
let a: string = "My String";
let myAge: int = 25;
let c as string = "My String";
let b = ("My String" as string);
Pregunta 3
Pregunta
let variable declaration is accessible anywhere within their containing function, module, namespace, or global scope.
Respuesta
True
False
Pregunta 4
Pregunta
Please use drag and drop to make sure that variable sentence contains the following string: "Hello, my name is Joe Bloggs. I'm 44 years old."
let myName = "Joe Bloggs";
let myAge: number = 44;
let sentence: string = `Hello, my name is [blank_start]${myName}[blank_end]. I'm [blank_start]${myAge}[blank_end] years old.`;
Respuesta
{myName}
{$myName}
${myName}
$myName
$myAge.toString()
${myAge}
{$myAge.toString()}
{$myAge}
Pregunta 5
Pregunta
The following code will output in the console:
enum make { Audi = 100, BMW = 200, Citroen=300, Ford, Holden, Hyundai, Jaguar, Kia, Lada }
let myCarMake: make = make.Ford;
console.info(myCarMake.toString());