Skip to content

Instantly share code, notes, and snippets.

@TechMky
TechMky / wordmeaning.js
Created September 16, 2020 11:33
Get word meaning in Google Sheets
/**
* Get the word meaning of a word.
*
* @param {String} word for which the meaning needs to fetched.
* @return {String} meaning of the word
*/
function WORDMEANING(word) {
word = encodeURI(word);
var options = { muteHttpExceptions: true }