Menu
×
×
正确
const car: { type: string, @(6): string } = {
type: "Toyota"
};
const car: { type: string, model?: string } = {
type: "Toyota"
};
不正确
点击 此处 重试 正确
下一题 ❯const car: { type: string,w3exercise_input_no_0: string } = { type: "Toyota" }; |