NBA teams all time win loss record (2024)

Can you name the NBA teams all time win loss record?

By sabbacchi

2m

30 Questions

18 Plays18 Plays

18 Plays

Comments

Give Quiz Kudos

Give Quiz Kudos

-

")$objective.click(() => {window.onClickObjective(reckoningQuestObjective.quest_number, reckoningQuestObjective.objective_number, reckoningQuestObjective.quest_id, reckoningQuestObjective.objective_id, $objective);});if (!window.mweb) {$j('#snark').hide();$objective.insertAfter($j('#gameOverMsg'));} else if (is_flagship_app_view) {$j('#snark').html();$objective.appendTo($j('#snark'));} else {$objective.appendTo($j('#reckoning .stats-wrapper'));}} else if (showSnark) {var snark = getSnark(userPct);var attachSnarkModalListener = false;if (snark !== '') {snark = ""+snark+"";if (!window.mweb) {if (false) {attachSnarkModalListener = true;snark += "";} else {snark += "";}}} else {$j('#snark').hide();}$j('#snark').html(snark);if(attachSnarkModalListener){ $j('#hide-snark-open-confirmation-modal').on('click', function () { var modalArgs = {title: 'Hide These Messages?',message: 'Are you sure you want to hide post-quiz messages?', onYes: function(remodal){ $j.ajax({ type: "GET", url: "/ajax/user_settings.php", data: {s: 0}, success: function(response) { if (response.success) { $j('#snark').hide(); remodal.close(); } else { if (response.responseJSON.message) { remodal.$modal.find('#confirmation-error').html(response.responseJSON.message); remodal.$modal.find('#confirmation-error').show(); } else { remodal.$modal.find('#confirmation-error').html('There was an error saving your preferences. Please contact feedback if you continue to see this issue.'); remodal.$modal.find('#confirmation-error').show(); } } }, error: function(response) { if (response.responseJSON.message) { remodal.$modal.find('#confirmation-error').html(response.responseJSON.message); remodal.$modal.find('#confirmation-error').show(); } else { remodal.$modal.find('#confirmation-error').html('There was an error saving your preferences. Please contact feedback if you continue to see this issue.'); remodal.$modal.find('#confirmation-error').show(); } } }); } }; SporcleLib.Modal._openConfirmationModal(modalArgs); }); }} else {$j('#snark').hide();}// Update get reckoning with playlist infovar playlistData;if (mweb) {playlistData = typeof window.playlist === 'object' && window.playlist.hasOwnProperty('games') ? window.playlist : null;} else {playlistData = window.Sporcle.gameData.playlist ? window.Sporcle.gameData.playlist.vm.data : null;}if (playlistData) {playlistReckoning(playlistData, userPct, false && !stopwatch);}$j('#playGameBar').addClass('reckoning');$j('#reckonBox').show();if (mweb) {/* mobile games only */$j('#reckoning-numright').html(numRight);$j('#reckoning-time').html(displayTime(timerSecs));if (stopwatch) {$j('#reckoning-time-title').text("Stopwatch");$j('#reckoning-time, #reckoning-score').addClass('timePast');}var checkToOpenFlorinPlayGoalModal = () => {if (userPct == 0) {return;}if (!florinsPlayGoalData) {return;}var openModal = false;if (florinsPlayGoalData.reward_claimable) {openModal = true;} else if (florinsPlayGoalData.curr_streak + 1 == florinsPlayGoalData.goal_days && florinsPlayGoalData.plays_today == 0) {// First play of the day, this should complete their play goalopenModal = true;}if (openModal) { window.SporcleLib.Modal.openFlorinPlayGoalModal({ // Fudge these values to be at the goal, since we haven't necessarily logged this play yet and it might be the 7th curr_streak : florinsPlayGoalData.goal_days, reward_claimable : true, plays_today : florinsPlayGoalData.plays_today + 1, goal_days : florinsPlayGoalData.goal_days, reward_amount : florinsPlayGoalData.reward_amount, })}}if (is_flagship_app_view) {let animations = window.animations;let hapticType = 'success';let completeMsg;let animConfig = {animationData : animations.checkmark,loop : true,playSegments : [[0, 30], [31, 75]]};if (userPct == 1) {animConfig.animationData = animations.perfectScore;animConfig.playSegments = [[0, 14], [15, 75]];completeMsg = "Perfect Score!";} else if (timerSecs == 0) {hapticType = 'error';animConfig.animationData = animations.outOfTime;animConfig.playSegments = [[0, 14], [15, 75]];completeMsg = "Out of Time!";} else if (_spks && !didGiveUp) {hapticType = 'error';animConfig.animationData = animations.bomb;animConfig.playSegments = [[0, 14], [15, 75]];completeMsg = "You Hit a Mine!";}window.SporcleLib.Modal.openModalFromTpl($j('#post-game-modal-tpl').html(), {show_loading : false,onInit : (modal) => {let $modal = modal.$modal; $modal.attr('id', 'postGameModal'); postGameAnim = lottie.loadAnimation({container : $modal.find('#postGameIcon')[0],animationData : animConfig.animationData,loop : animConfig.loop,autoplay : false});$modal.find('.modal-close').on('click', () => {window.continuePostQuiz();}); $modal.find('#completeMsg').html(completeMsg); $modal.find('#postPct').html(roundPercentScore(userPct));$modal.find('#postCorrect').html($j('#reckoning-score').text());if (snark) {$modal.find('#snark').html(snark);} else {$modal.find('#snark').hide();}setTimeout(() => {postGameAnim.playSegments(animConfig.playSegments, true);// if (hapticType) {// setTimeout(() => {// window.SporcleApp.api.playHaptic(hapticType);// }, 150);// }}, 150);},onClose : () => {// Need this delay because if we open a new modal right as the close animation finishes,// Then the modal events get confused and the "onOpen" callback never gets calledsetTimeout(() => {checkToOpenFlorinPlayGoalModal();}, 50);}});} else {checkToOpenFlorinPlayGoalModal();}}$j('#playGameBox').empty().hide();$j('#postGameBox').show();}function toggleshow() {showans = !showans;}function roundPercentScore(pctScore) {return _.round(100 * pctScore);}function updateBadge(userPct) {var earned = false;if (quizBadge && userPct > 0) { if (quizBadge.criteria && quizBadge.criteria.length) { var requiredCount = quizBadge.criteria.length; var earnedCount = 0; //Loop through possible badge criteria to see if we earned them quizBadge.criteria.forEach(function (criterion) { var comparison = parseInt(criterion.compare); if(criterion.name === 'percent'){ if ((comparison === 0 && userPct === parseFloat(criterion.value)) || //'0' means percent needs to equal (comparison === 1 && userPct > parseFloat(criterion.value)) || //'1' means percent needs to be greater than (comparison === -1 && userPct < parseFloat(criterion.value)) //'-1' means percent needs to be less than (at the time of writing, no badge exists like this) ) { earnedCount++; } } else if (criterion.name === 'month'){ var d = new Date(); //getMonth() starts at 0 if((d.getMonth() + 1 == criterion.value && comparison === 0) || (d.getMonth() + 1 > criterion.value && comparison === 1) || (d.getMonth() + 1 < criterion.value && comparison === -1) ){ earnedCount++; } } else if (criterion.name === 'day'){ var d = new Date(); if((d.getDate() == criterion.value && comparison === 0) || (d.getDate() > criterion.value && comparison === 1) || (d.getDate() < criterion.value && comparison === -1) ){ earnedCount++; } } else if (criterion.name === 'day_of_the_week'){ var d = new Date(); if((d.getDay() == criterion.value && comparison === 0) || (d.getDay() > criterion.value && comparison === 1) || (d.getDay() < criterion.value && comparison === -1) ){ earnedCount++; } } else if (criterion.name === 'avg_percent' && typeof averageScore !== 'undefined') {var roundedUserPct = _.round(userPct, 2); //matches backend precision in badge trackervar roundedAvgPct = _.round(averageScore, 2);if((roundedUserPct == roundedAvgPct && comparison === 0) || (roundedUserPct > roundedAvgPct && comparison === 1) || (roundedUserPct < roundedAvgPct && comparison === -1) ){ earnedCount++; } }}); earned = earnedCount == requiredCount;} else {earned = true;}} if (earned) {quizBadge.condition_earned = true;quizBadge.achieved_count++; var spliceIndex = null;_(quizBadge.remaining_conditions).each(function(condition, index) {if (quizBadge.condition_id == condition.condition_id) {spliceIndex = index;}});_(quizBadge.conditions).each(function(condition, index) {if (quizBadge.condition_id == condition.condition_id) {condition.earned = true;}});if (spliceIndex !== null) {quizBadge.remaining_conditions.splice(spliceIndex, 1); quizBadge.condition_earned_date = (new Date()).toLocaleDateString(undefined, { year: 'numeric', month: 'long', day: 'numeric' });; }if (quizBadge.remaining_conditions.length === 0 ) {if (quizBadge.badge_earned && quizBadge.levelable) {quizBadge.achieved_count = 0;quizBadge.level++;var currDate = new Date();quizBadge.last_level_date = window.SporcleLib.getMonthString(currDate.getMonth()) + ' ' + currDate.getDate() + ', ' + currDate.getFullYear();} else {quizBadge.badge_earned = true;var currDate = new Date();quizBadge.earned_date = window.SporcleLib.getMonthString(currDate.getMonth()) + ' ' + currDate.getDate() + ', ' + currDate.getFullYear();if (quizBadge.levelable) {quizBadge.level = 1;quizBadge.last_level_date = window.SporcleLib.getMonthString(currDate.getMonth()) + ' ' + currDate.getDate() + ', ' + currDate.getFullYear();quizBadge.achieved_count = 0;}}}if (badgeTooltip) {badgeTooltip.deactivate();}if (badgeTooltipRightRail) {badgeTooltipRightRail.deactivate();}var template = _.template($j('#quiz-badge-template').html());if (window.mweb) {$j('#main-wrapper .quiz-badge').replaceWith($j(template(quizBadge)));} else {quizBadge.tooltip_trigger_id = 'quiz-badge-art';$j('#main-quiz-content .quiz-badge').replaceWith($j(template(quizBadge)));quizBadge.tooltip_trigger_id = 'quiz-badge-art-right-rail';$j('#right-rail .quiz-badge').replaceWith($j(template(quizBadge)));if (!quizBadge.badge_earned) {if (window.setupUnearnedBadgeTooltip) {window.setupUnearnedBadgeTooltip($j('#quiz-badge-art'), quizBadge);window.setupUnearnedBadgeTooltip($j('#quiz-badge-art-right-rail'), quizBadge);} else {var conditionsTemp = _.template($j('#badge-conditions-template').html());var tooltipHtml = $j(conditionsTemp(quizBadge));const badgeTooltipOptions = { //this should match /sporcle-ui/tooltips/functionalTooltipstarget : true,tipJoint : 'bottom middle',showOn : 'mouseover',hideTriggers : ['target','tip'],stemLength : 8,stemBase : 12,hideOn : 'mouseout',removeElementsOnHide : true,background : 'white',borderColor : '#d8d8d8',borderWidth : 1,shadowOffset : [3,3],shadowBlur : 10,showEffect : 'slide',showEffectDuration : 0.1,hideEffectDuration : 0.3,className : 'badge-tooltip',shadowColor : 'rgba(0,0,0,0.25)'};badgeTooltip = new Opentip('#quiz-badge-art', tooltipHtml.html(), badgeTooltipOptions);badgeTooltipRightRail = new Opentip('#quiz-badge-art-right-rail', tooltipHtml.html(), badgeTooltipOptions);}} else {if (window.setupEarnedBadgeTooltip) {window.setupEarnedBadgeTooltip($j('#quiz-badge-art'), quizBadge);window.setupEarnedBadgeTooltip($j('#quiz-badge-art-right-rail'), quizBadge);}}}}}function showHintTooltip(x, y, hint) {$hint = $j('#hintTooltip');if ($hint.length == 0) {$hint = $j('

' +'

' +'

' +'

' +'

' +'

').appendTo($j('body'));}if (hint) {var $afterContainer = $hint.find('.afterContainer');var $after = $hint.find('.after');// Set to max width before resize$afterContainer.css({width: '120px'});$hint.show();// Set tooltip text to hint$after.html(hint);// Get width of tooltip with textvar width = Math.ceil($after[0].offsetWidth) + 1;var leftShift = 0;if (mweb) {// Make sure the tooltip doesn't go off either side of the screenvar leftBound = 51;var rightBound = $j('body').width() - 71;var buf = 11;// Shift based on width of textvar shiftLimit = Math.max(width/2 - 20, 0);if (x < leftBound) {// Too close to left edge of screenleftShift = -shiftLimit;x = Math.max(x, buf);} else if (x > rightBound) {// Too close to right edge of screenleftShift = shiftLimit;x = Math.min(x, $j('body').width() - buf);}}// Set the position of the hint$hint.css({left: x + 'px',top: y + 'px',});// Set outer container size and position$afterContainer.css({width: width + 'px',left: '-' + ((width / 2) + leftShift) + 'px'});} else {$hint.hide();}}function getRandomColor() {var r = Math.round(Math.random() * 255);var g = Math.round(Math.random() * 255);var b = Math.round(Math.random() * 255);return 'rgb(' + r + ',' + g + ',' + b + ')';}function hintTooltipIsDisplayed() {return $j('#hintTooltip').is(':visible');}function getCurrentHintText() {return $j('#hintTooltip .afterContainer .after').text();}// This is used to yield execution to the main javascript thread so that we can break longer running tasks into smaller tasks.// See here: https://web.dev/articles/optimize-long-tasks?utm_source=devtoolsfunction yieldToMain () {return new Promise(resolve => {setTimeout(resolve, 0);});}async function runStartCode(stopwatch) {if (typeof gamePageIsLoaded != "undefined" && gamePageIsLoaded) {if (window.startTriggered) {return;} else {window.startTriggered = true;}if (typeof stopwatch !== 'undefined') {if (stopwatch) {window.selectTimerSetting('stopwatch');} else {window.selectTimerSetting('timer');}}// The `startGame` function does a lot, so we want to yield execution both before and after this call. Yielding before// will allow the existing task to finish, freeing up the runtime to move to the next thing in the message queue before startGame// executes. Yielding after will do the same, before we perform the rest of the actions related to starting a quiz.await yieldToMain();await startGame(120);await yieldToMain();callSPHooks('postStart');}}function callSPHooks(name) {if (typeof _spHooks != 'undefined') {var hlen = _spHooks[name].length;for (var i = 0; i < hlen; i++) {_spHooks[name][i]();}}}

0/30

Quiz is untimed. Quiz plays in practice mode will not be counted towards challenge completion or badge progress.

02:00

Win / LossTeams
3,634-2,480
3,550-2,454
3,101-2840
2,974-3,131
2,969-3,134
2,927-3,010
2,827-3,171
2,748-3,257
2,470-2,136
2,429-2,096
2,389-2,136
2,383-2,297
2,369-2,237
2,305-1,562
2,292-2,070
Win / LossTeams
2,272-2,815
2,177-1,855
2,032-2,321
1,954-1,915
1,930-1,938
1,843-2,517
1,797-1,746
1,654-2,214
1,521-1,346
1,315-1,488
1,174-1,539
1,147-1,647
1,096-1,214
998-1,313
831-937
NBA teams all time win loss record (2024)

FAQs

What is the best win-loss record in NBA history? ›

Here are the teams that had the best regular seasons in NBA history:
  • 2015-16 Golden State Warriors: 73-9, .890. ...
  • 2. 1995-96 Chicago Bulls: 72-10, . ...
  • 1966-67 Philadelphia 76ers: 68-13, .
Jan 23, 2024

How many NBA teams have won 70 games in a season? ›

The 1996 Bulls and the 2016 Warriors are the only teams to win at least 70 games in a single season.

Who has the most wins and losses in the NBA? ›

411). The Boston Celtics leads the most played games, with 6,114. Conversely, the New Orleans Pelicans have played the fewest overall games, with 1,768. The Celtics have also recorded the most wins, with 3,634; the Sacramento Kings have recorded the most losses with 3,257.

Who is the winningest NBA team of all time? ›

Which NBA team is king of the hard court? The crown belongs to the Boston Celtics, the winner of 18 titles. The Los Angeles Lakers are close behind with 17. A distant third is the Golden State Warriors, with 7 championships, followed by the Chicago Bulls, with 6.

Who did the 73 9 Warriors lose to? ›

2015–16 Golden State Warriors season
Record73–9 (.890)
PlaceDivision: 1st (Pacific) Conference: 1st (Western)
Playoff finishNBA Finals (lost to Cavaliers 3–4)
Stats at Basketball-Reference.com
11 more rows

Has a NBA team ever gone 0-82? ›

No NBA team ever finished 0–82. The worst record percentage-wise was The 2011–12 Charlotte Bobcats who finished with a 7–59 record and . 106 Percentage. The worst record suffered by an NBA team in an 82-game season was the 9-73 record by the 1973 Philadelphia 76ers for a .

What's the worst record in NBA history? ›

Considered to be the worst NBA team of all time, the Bobcats failed to improve on their 34–48 record from the previous season and set the record for the worst winning percentage in a season with a . 106 winning percentage, "surpassing" the 1972–73 Philadelphia 76ers (.

What is the longest win streak in NBA history? ›

The Los Angeles Lakers own the longest winning streak in NBA history. They won 33 straight games in the 1971–72 season, compiling a season-best 69–13 record and went on to win the NBA Finals.

What is the best home record in NBA history? ›

Boston Celtics – 1985-86 (40-1; . 976)

What is the greatest loss in NBA history? ›

The Thunder's 62-point win wasn't enough to rid the franchise of holding the record for the most-lopsided loss in league history, which was a 152-79 rout by the Memphis Grizzlies in 2021.

What is the best NBA franchise of all time? ›

The Boston Celtics just snagged their 18th NBA title in franchise history. That puts them one championship ahead of the Los Angeles Lakers in the decades-long battle for organizational supremacy. L.A. certainly still has an argument for the crown, but Boston now has the lead in the most important category.

Who is the oldest NBA team? ›

The Kings compete in the National Basketball Association (NBA) as a member of the Pacific Division of the Western Conference. The Kings are the oldest team in the NBA, and the first team in the major professional North American sports leagues located in Sacramento. The team plays its home games at the Golden 1 Center.

Who is the best NBA team ever? ›

The top 10 Greatest Teams in NBA History
  • 1. 1995-1996 Chicago Bulls. Led by the iconic Michael Jordan and coached by Phil Jackson, the 1995-1996 Chicago Bulls set a new standard for excellence in the NBA. ...
  • 2016-2017 Golden State Warriors. ...
  • 1991-1992 Chicago Bulls. ...
  • 2000-2001 Los Angeles Lakers.
Dec 12, 2023

What NBA team has never won a championship? ›

Which teams have never won an NBA championship? There are 10 active NBA teams that have not yet won an NBA championship: Brooklyn Nets, Charlotte Hornets, Indiana Pacers, Los Angeles Clippers, Memphis Grizzlies, Minnesota Timberwolves, New Orleans Pelicans, Orlando Magic, Phoenix Suns and Utah Jazz.

What is the highest defeat in NBA history? ›

Which is the biggest blowout in NBA history? The Oklahoma City Thunder's 152-79 loss to the Memphis Grizzlies is the biggest blowou6t in NBA history.

What is the best undefeated NBA record? ›

The Los Angeles Lakers own the longest winning streak in NBA history. They won 33 straight games in the 1971–72 season, compiling a season-best 69–13 record and went on to win the NBA Finals.

What is Michael Jordan's win-loss record? ›

Michael Jordan had a record of 706-366 in his career.
NAMEAPG
7M. Jordan5.5
8M. Jordan6.1
9M. Jordan5.5
10M. Jordan5.3
10 more rows

Top Articles
Best Tinted Moisturizer Oily Skin
Ship - Corruption of Champions II
Libiyi Sawsharpener
Bashas Elearning
Junk Cars For Sale Craigslist
Chambersburg star athlete JJ Kelly makes his college decision, and he’s going DI
Online Reading Resources for Students & Teachers | Raz-Kids
Top Scorers Transfermarkt
Soap2Day Autoplay
My Boyfriend Has No Money And I Pay For Everything
Tlc Africa Deaths 2021
Over70Dating Login
سریال رویای شیرین جوانی قسمت 338
Guidewheel lands $9M Series A-1 for SaaS that boosts manufacturing and trims carbon emissions | TechCrunch
Tamilrockers Movies 2023 Download
使用 RHEL 8 时的注意事项 | Red Hat Product Documentation
Chelactiv Max Cream
Inter-Tech IM-2 Expander/SAMA IM01 Pro
Ruben van Bommel: diepgang en doelgerichtheid als wapens, maar (nog) te weinig rendement
Skip The Games Fairbanks Alaska
Panic! At The Disco - Spotify Top Songs
Craigslist Personals Jonesboro
Yog-Sothoth
Soulstone Survivors Igg
Who is Jenny Popach? Everything to Know About The Girl Who Allegedly Broke Into the Hype House With Her Mom
Getmnapp
Jackie Knust Wendel
Jersey Shore Subreddit
Vivification Harry Potter
Little Einsteins Transcript
Happy Shuttle Cancun Review
Progressbook Newark
Rugged Gentleman Barber Shop Martinsburg Wv
Napa Autocare Locator
new haven free stuff - craigslist
Max 80 Orl
Adecco Check Stubs
Nsu Occupational Therapy Prerequisites
Diana Lolalytics
Family Fare Ad Allendale Mi
Elizaveta Viktorovna Bout
Bella Thorne Bikini Uncensored
2023 Nickstory
Sas Majors
Santa Clara County prepares for possible ‘tripledemic,’ with mask mandates for health care settings next month
Here's Everything You Need to Know About Baby Ariel
Flappy Bird Cool Math Games
303-615-0055
Richard Mccroskey Crime Scene Photos
Coleman Funeral Home Olive Branch Ms Obituaries
Superecchll
Coldestuknow
Latest Posts
Article information

Author: Dan Stracke

Last Updated:

Views: 5311

Rating: 4.2 / 5 (43 voted)

Reviews: 90% of readers found this page helpful

Author information

Name: Dan Stracke

Birthday: 1992-08-25

Address: 2253 Brown Springs, East Alla, OH 38634-0309

Phone: +398735162064

Job: Investor Government Associate

Hobby: Shopping, LARPing, Scrapbooking, Surfing, Slacklining, Dance, Glassblowing

Introduction: My name is Dan Stracke, I am a homely, gleaming, glamorous, inquisitive, homely, gorgeous, light person who loves writing and wants to share my knowledge and understanding with you.