ADVERTISEMENT
970x220

NCT, BLACKPINK, Seventeen achieve 'million seller' status with their new albums

Published Nov 13, 2020 01:43 pm
(Clockwise from top left) NCT, BLACKPINK and Seventeen (Twitter / Instagram)

K-pop idol groups NCT, BLACKPINK and Seventeen have officially become “million sellers” through their respective new albums.

South Korea’s Gaon Music Chart released the rankings for its monthly album chart for October showing the three groups selling one million copies each.

The chart showed NCT’s “Resonance Pt. 1” sold 1,193,394 copies in October followed by BLACKPINK’s “The Album” with 1,073,671 copies and Seventeen’s “Semicolon” with 1,061,887 copies. The album chart is based on album shipments minus returns.

NTC’s “Resonance Pt. 1”

“Resonance Pt. 1” was released on Oct. 12 featuring the 23 members of NCT including new members Shotaro and Sungchan. The album had 1.12 million in pre-orders and it debuted at No. 6 on Billboard 200. It also placed first on iTunes Top Albums chart in 35 countries.

The album’s main track is "Make A Wish (Birthday Song)," a hip-hop beat-based pop dance song featuring Taeyong, Doyoung, Jaehyun, Lucas, Xiaojun, Jaemin and Shotaro. As of writing, the music video for the song has garnered 101.76 million views on YouTube since Oct. 12.

BLACKPINK’s “The Album”

“The Album” is BLACKPINK’s first ever studio album since their debut. With 1.07 million copies sold for “The Album,” BLACKPINK became the first K-pop girl group to achieve “million seller” status.

According to YG Entertainment, “The Album” topped the iTunes Top Albums chart in 57 countries and regions after it was released on Oct. 2 and made its debut at No. 2 on Billboard 200 and the UK”s Official Albums Chart.

The agency added that before BLACKPINK, no girl group had sold one million copies for an album and the highest sales volume achieved was 760,000 copies including records dating back to the 1990s.

YouTube previously told Manila Bulletin that the music video for “Lovesick Girls,” the main track of the album, garnered 61.4 million views in the first 24 hours upon release on Oct. 2 to become the sixth biggest 24-hour music video debut on YouTube of all time. The music video has 240 million views as of writing.

Seventeen’s “Semicolon”

By achieving 1,061,887 copies in sales for “Semicolon,” Seventeen have now officially achieved the status of “double million sellers.”

They became a “million seller” in June when their album “Heng-garae” sold 1.09 million copies in the first week of release. Gaon Music Chart’s album rankings for the first half of the year showed “Heng-garae” sold 1.2 million copies to place second behind BTS’ “Map of the Soul: 7,” which had 4.26 million copies in sales.

Before its release, “Semicolon” had garnered more than 1.1 million copies in pre-orders, according to Pledis Entertainment.

On the other hand, on Gaon’s Retail Album chart for October, “Semicolon” placed first with 921,158 copies sold followed by “Resonance Pt. 1” with 680,967 copies and “The Album” with 641,828.

ADVERTISEMENT
300x250
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0 72px 0 12px; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } li:empty { display: none; } .hidden { display: none; }
function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // The two offset values // changed to 10 from 1 , 2 const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } function isNearBottom() { return window.innerHeight + window.scrollY >= document.documentElement.scrollHeight - 100; } function onScroll() { if (isLoading) return; // Skip if already loading if (isNearBottom()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; // Set flag to prevent multiple calls const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { loadCount++; // Increment only after successful execution }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; // Reset flag after execution }); } } window.addEventListener("scroll", onScroll); }); // Mutation Observer for Newly Loaded Articles const observer = new MutationObserver(() => { const articles = document.querySelectorAll(".articles-observe"); if (articles.length > 0) { observeArticles(articles); } }); observer.observe(document.body, { childList: true, subtree: true }); // Intersection Observer for Updating URL function observeArticles(articles) { const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); } } }); }, { threshold: 0.1 } ); articles.forEach(article => intersectionObserver.observe(article)); }

Sign up by email to receive news.