Would you like to clone this notebook?

When you clone a notebook you are able to make changes without affecting the original notebook.

Cancel

Joi basic validation 2

node v14.20.1
version: 2.0.0
endpointsharetweet
const Joi = require("joi") const partialPetSchema = Joi.object({ name: Joi.string().required(), age: Joi.number().required(), }); const result = partialPetSchema.validate({ name: 'Popo', age: 'DOG' }); console.log(result.error.message);
Loading…

no comments

    sign in to comment