const express = require("express");
const bodyParser = require("body-parser");
const app = express();
app.use(bodyParser.urlencoded({extended:true}));
I want to know why we have to set the value of extended to true in the code above for accepting form inputs