Answer the question
In order to leave comments, you need to log in
Why does it return Undefined?
const fetch = require("node-fetch");
let meme;
//import fetch from 'node-fetch';
const fs = require("fs");
function gen() {
fetch( "https://www.reddit.com/r/memes/hot/.json?count=100"
)
.then(res => res.json())
.then(json => {
let postID =
json.data.children[
Math.floor(Math.random() * json.data.children.length)
];
this.result = {
image: postID.data.url,
category: postID.data.link_flair_text,
caption: postID.data.title,
permalink: postID.data.permalink
};
});
return this.result;
};
console.log(gen())
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question