Quiz on Routing and Middleware
Test yourself on routing and middleware.
We'll cover the following...
We'll cover the following...
Technical Quiz
1.
In the application code given below, which URL must we visit for the string “Join our community?”
'use strict'
const Route = use('Route')
Route.get('/', () => 'Welcome!')
Route.get('/about', () => 'Know more about us')
Route.get('/join', () => 'Join our community')
A.
<Application_URL>/
B.
<Application_URL>/hello
C.
<Application_URL>/about
D.
<Application_URL>/join
1 / 4