Zusammenfassung der Ressource
Frage 1
Frage
Consider the following interface and function:
interface Person {
readonly firstname: string;
middlename?: string;
surname: string;
}
function getFullName(p: Person): string {
if (p.middlename !== null && p.middlename !== undefined)
{
if (p.firstname !== null && p.firstname !== undefined)
{
return `${p.firstname} ${p.middlename} ${p.surname}`;
}
else
{
return `${p.middlename} ${p.surname}`;
}
}
else
{
return `${p.firstname} ${p.surname}`;
}
}
Which of the following code snippets will output "John Doe"? Select all that apply.
Antworten
-
let fullname = getFullName({ title: "Mr", firstname: "John", surname: "Doe" });
console.info(fullname);
-
let myName = { title: "Mr", firstname: "John", surname: "Doe" }
let fullname = getFullName(myName);
console.info(fullname);
-
let myName: Person = { firstname:"Johnathan", surname: "Doe" }
myName.firstname = "John";
let fullname = getFullName(myName);
console.info(fullname);
-
let myName: Person = { middlename:"John", surname: "Doe" }
let fullname = getFullName(myName);
console.info(fullname);
Frage 2
Frage
Which of the following keywords can be used in TypeScript to implement interface and inheritance. Choose all that appy.
Antworten
-
implements
-
inherits
-
super
-
base
-
extends
Frage 3
Frage
Which of the following is possible to do in TypeScript? Choose all that apply.
Antworten
-
class implements interface
-
class extends interface
-
interface extends interface
-
interface extends class
-
interface implements class
-
interface implements interface