Home »
MCQs »
ReactJS MCQs
Consider the below statement – Which method will be used at the place of blank space (____)?
38. Consider the below statement – Which method will be used at the place of blank space (____)?
class MainTitle extends React.Component {
______ {
return <h1>Welcome at IncludeHelp!</h1>;
}
}
- renderDOM()
- renderComponent()
- render()
- render()
Answer: C) render()
Explanation:
The correct code is:
class MainTitle extends React.Component {
render() {
return <h1>Welcome at IncludeHelp!</h1>;
}
}