When defining dynamic routes in Express.js, using :param* will match ______ in the route path.

  • param
  • :param
  • *param
  • :param*
In Express.js, when defining dynamic routes, using :param* will match any characters after param in the route path and store them as a parameter in the request object. The other options do not represent the correct syntax for defining dynamic routes in Express.js.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *