Thiết kế App

You cannot copy content of this page

function convertYouTubeLink(url) { if (url.includes("watch?v=")) { return url.replace("watch?v=", "embed/"); } return url; } // Ví dụ: let videoUrl = "https://www.youtube.com/watch?v=abc123"; let embedUrl = convertYouTubeLink(videoUrl); console.log(embedUrl); // https://www.youtube.com/embed/abc123