Question: For the following template-driven forms example, what argument can be passed to the submit method in the click event to submit the data for the form?

  1. submit(form.value)
  2. submit($event)
  3. submit(ngForm.value)
  4. submit(FirstName, lastName)

Answer: The correct answer of the above question is Option A:submit(form.value)