exprexo/exprexo

View on GitHub
lib/quotes.js

Summary

Maintainability
A
0 mins
Test Coverage
const quotes = [
  `exprexo your self`,
  `exprexo and javascript make the perfect blend`,
  `let's get some exprexo`
]

const say = () => quotes[Math.floor(Math.random() * quotes.length)]

module.exports = {
  say
}