Quiz Yourself on Redis with Node.js
Test yourself on what you learned in this chapter.
1
Consider the following Redis operations using the redis
npm package. What’s the output of the following code?
const reply = await redisClient.set('website', 'educative')
console.log(reply)
A)
educative
B)
website
C)
OK
D)
Error
Question 1 of 50 attempted
Get hands-on with 1400+ tech skills courses.