Generate Random Comments for Youtube - Purwana Tekno, Software Engineer
    Media Belajar membuat Software Aplikasi, Website, Game, & Multimedia untuk Pemula...

Post Top Ad

Minggu, 12 Maret 2023

Generate Random Comments for Youtube

 Here's an example JavaScript code that generates a random YouTube comment from a list

const comments = [
  "Great video! Thanks for sharing.",
  "This video is so helpful, I learned a lot.",
  "I've been struggling with this topic, but your video made it so much easier to understand.",
  "Excellent presentation! The examples you provided were very useful.",
  "Thanks for the tips, I'll definitely use them.",
  "I've watched this video multiple times, and I still learn something new every time.",
  "Your video is amazing, it's exactly what I needed.",
  "I can't believe how much I've learned from this video. Thank you!",
  "Your video is so informative and well-made, it's a pleasure to watch.",
  "This video is a game-changer, I'm so glad I found it.",
  "Thank you for sharing your knowledge with us!",
  "This video is very engaging, I couldn't stop watching.",
  "I've been looking for a tutorial on this topic, and your video is the best one I've found.",
  "Your video is so well-explained, even a beginner like me can understand it.",
  "I love how you break down complex concepts into simple and easy-to-understand explanations.",
  "This video is a must-watch for anyone interested in this topic.",
  "I never knew this before watching your video. Thank you for enlightening me!",
  "I really appreciate the time and effort you put into making this video.",
  "Your video has inspired me to try this out for myself!",
  "I love how you use real-life examples to illustrate your points in the video.",
  "This video deserves more views, it's that good!",
  "Your teaching style is amazing, I wish all tutorials were like this.",
  "I'm blown away by the quality of this video. Thank you!",
  "This video has helped me overcome a roadblock in my learning. Thank you so much!",
  "Your video is so well-organized and easy to follow. I'll definitely be coming back to it in the future.",
  "This video is a treasure trove of information! Thank you for sharing.",
  "Your explanations are so clear and concise. I really appreciate it.",
  "I never knew learning could be so fun until I watched your video.",
  "Your video is a masterpiece. I'm in awe of your talent.",
  "This video is a great resource for anyone looking to learn more about this topic.",
  "I love how you use humor to keep the video interesting and engaging.",
  "I've been recommending your video to all my friends. It's that good!",
  "Your video has helped me understand a complex topic in a way that no other tutorial could.",
  "I appreciate the effort you put into making this video accessible to everyone, regardless of their level of expertise.",
  "I've learned more from this video than I have from an entire course on this topic!",
  "Your video has given me a newfound appreciation for this subject. Thank you!",
  "I love how you make learning seem so effortless in your videos.",
  "This video has helped me solve a problem I've been struggling with for weeks. Thank you!",
  "Your video is a work of art. Thank you for sharing it with the world.",
  "I've been binge-watching your videos all day. They're that good!",
  "Your video has opened up a whole new world of possibilities for me. Thank you!",
  "This video is the best thing I've seen all day.",
  "Your video is like a breath of fresh air in a sea of boring tutorials."];
  
function generateRandomComment() {
  const randomIndex = Math.floor(Math.random() * comments.length);
  return comments[randomIndex];
}

const randomComment = generateRandomComment();
console.log(randomComment);  

This code defines an array called comments that contains 50 text strings representing possible comments. The generateRandomComment function then selects a random comment from this array by generating a random index using Math.floor(Math.random() * comments.length) and returning the comment at that index. Finally, the code generates a random comment and logs it to the console using console.log. You can modify this code to integrate it into a larger project or to output the comment in a different way (e.g., as HTML).

Post Top Ad