...

/

Quiz Yourself on Redis with Node.js

Quiz Yourself on Redis with Node.js

Test yourself on what you learned in this chapter.

We'll cover the following...
Technical Quiz
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


1 / 5
...