Is it possible to get origin word and Superlative word from Comparative? #1001
-
If I request better, then I hope to get good and best from better. Request 'Better' Same way, hope to get origin word and comparative word from Superlative word. Do you have any good idea to get origin word? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
hey @ByungwooKim-BK - yes, this is posible with console.log(nlp('better').adjectives().conjugate())
/*[
{
Adjective: 'good',
Comparative: 'better',
Superlative: 'best',
Noun: 'goodness',
Adverb: 'well'
}
]
*/ cheers |
Beta Was this translation helpful? Give feedback.
hey @ByungwooKim-BK - yes, this is posible with
.adjectives().conjugate()
- please read the documentation herecheers