Answer to Question #257712 in HTML/JavaScript Web Application for praveen

Question #257712

given two boolean values isgrasstrimmedfound and iswaterhosepipefound as inputs, create three js promises using async/await and try/catch blocks


1
Expert's answer
2021-10-27T18:50:57-0400
function main() {
 const isGrassTrimmedFound = JSON.parse(readLine());
 const isWaterHosePipeFound = JSON.parse(readLine());
 
 const myPromise1 = async() => {
 try {
 if (!isGrassTrimmedFound) throw new Exception();
 else {
 return await Promise.resolve("Grass Trimmed");
 }
 } catch(e) {
 return await Promise.reject("Grass Trimmer Not Found")
 }
 }
 
 const myPromise2 = async() => {
 return await Promise.resolve("Garden Cleaned");
 }

 const myPromise3 = async() => {
 try {
 if (!isWaterHosePipeFound) throw new Exception();
 else {
 return await Promise.resolve("Watered Plants");
 }
 } catch(e) {
 return await Promise.reject("Water Hose Pipe Not Found")
 }
 }
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS