Today's Digital Newspaper

The Gazette

Weather Block Here



Point-of-attack defense, late turnovers lead to Denver Nuggets dropping finale of 6-game road trip in Utah

Turnover troubles down the stretch and defensive problems at the point of attack took a toll on Denver’s hopes for a shorthanded win in a 108-104 loss Wednesday in Utah.

After Will Barton III drove for a layup that tied it at 97 with 3:57 left in the game, the Nuggets committed four turnovers in as many minutes, leading to seven late Utah points. The Nuggets committed 11 of their 14 turnovers, which led the 16 of Utah’s 20 points off turnovers, in the second half.

“Close game on the road, undermanned, those are just so valuable, those possessions that you’re not getting a shot off,” Nuggets coach Michael Malone said. “The effort was there. A lot of guys stepped up and made good plays, but the paint and the turnovers, were in my opinion, the deciding factor.”

Utah scored 64 of its points in the paint and outscored Denver by 22 inside. Trent Forrest led the Jazz with 18 points after frequently beating his defender off the dribble. Denver was without its best point-of-attack defender in Aaron Gordon and starting center Nikola Jokic, who has improved as an interior defender.

“He went right. He’s still going right. I think when he goes home, he’s going to be in the right lane, and we let him go right all night long,” Malone said. “That’s where you have to be a little more locked in to who am I guarding? What are his tendencies to try and take that away? Size would help, but I think you’ve got to sit down and guard.”

Mike Conley added 17, while Rudy Gay, Bojan Bogdanovic and Royce O’Neale scored 15 points apiece.

Bryn Forbes scored 26 points off the bench to lead the Nuggets, and Monte Morris added 15. Forbes had a hot shooting night, finishing 10 of 13 but committed one of those four late turnovers.

“We had a few untimely turnovers that made it a little rough for us to win that game,” Forbes said, lamenting losing the ball with the Nuggets down two with 3:09 left. Conley picked up the ball, and Gay finished the possession with a couple of points in the paint.

“Then, (we were) coming down and picking up stupid fouls and letting them get some easy baskets at the rim. It was a little frustrating.”

Barton (14) Davon Reed (13) and Bones Hyland (10) also scored in double figures for Denver. After adding seven rebounds, four assists and a steal with no turnovers in nearly 30 minutes of playing time, Reed, who was signed from the G League earlier this season, said he feels like he’s proving that he deserves a full-time spot in the NBA.

Sign Up For Free: AM Update Newsletter

let pathVariable;
let pathVariable2;

function handleUrlPathSegment() {

const fullPath = window.location.pathname.toLowerCase();
if (fullPath.includes(‘/business/’)) {
pathVariable = ‘business’;
pathVariable2 = ‘Business Newsletter’;
} else if (fullPath.includes(‘/outdoors/’) || fullPath.includes(‘/outdoor/’)) {
pathVariable = ‘outdoors’;
pathVariable2 = ‘Outdoors Newsletter’;
} else if (fullPath.includes(‘/opinion/’)) {
pathVariable = ‘opinion’;
pathVariable2 = ‘Opinion Newsletter’;
} else if (fullPath.includes(‘politics’)) {
pathVariable = ‘politics’;
pathVariable2 = ‘Politics Newsletter’;
} else {
pathVariable = ‘am-update’;
pathVariable2 = ‘AM Update Newsletter’;
}

console.log(`Current path: ${fullPath}`);
console.log(`Path variable set to: ${pathVariable}`);
console.log(`Path variable 2 set to: ${pathVariable2}`);

applyNewsletterName(pathVariable2);

return { pathVariable, pathVariable2 };
}

function applyNewsletterName(newsletterName) {

if (document.readyState === ‘loading’) {
document.addEventListener(‘DOMContentLoaded’, function() {
updateNewsletterElement(newsletterName);
});
} else {

updateNewsletterElement(newsletterName);
}
}

function updateNewsletterElement(newsletterName) {
const newsletterElement = document.getElementById(‘newsletterName’);

if (newsletterElement) {
newsletterElement.textContent = newsletterName;
console.log(`Updated #newsletterName element with: ${newsletterName}`);
} else {
console.warn(‘Element with ID #newsletterName not found in the DOM’);
}
}

function setupFormSubmitListener() {
function getFormattedDate() {
const now = new Date();

const timestamp = now.getTime();

console.log(‘chris: Using Unix timestamp’);
console.log(‘chris: Current time:’, now);
console.log(‘chris: Unix timestamp (ms):’, timestamp);

return timestamp;
}

const formattedDate = getFormattedDate();
var profile = window.blueConicClient.profile.getProfile();
profile.setValues(‘newsletter_category’, pathVariable);
profile.setValue(‘newsletter_signup_date’, formattedDate);
window.blueConicClient.profile.updateProfile(this, function() {
});
}

handleUrlPathSegment();

Success! Thank you for subscribing to our newsletter.

function subscribeSuccess() {
var nsltrform = document.querySelector(“#nsltr”);
var nsltrSuccess = document.querySelector(“#successnsltr”);

nsltrform.classList.add(“hideblock”);
nsltrSuccess.classList.remove(“hideblock”);
}

function validateEmail(email) {
return String(email)
.toLowerCase()
.match(
/^(([^()[]\.,;:s@”]+(.[^()[]\.,;:s@”]+)*)|(“.+”))@(([[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}])|(([a-zA-Z-0-9]+.)+[a-zA-Z]{2,}))$/
);
}

function validateEmailAddress() {
const result = document.querySelector(“#result”);
const email = document.querySelector(“#email”).value;

result.innerText = “”;

if(validateEmail(email)) {
newsletterSubscribe(email);
} else {
result.innerText = ‘The email entered: ‘ + email + ‘ is not valid :(‘;
result.style.color = “red”;
}
return false;
}

function newsletterSubscribe(email) {
fetch(“https://services.gazette.com/mg2-newsletters.php?action=subscribe&site=denvergazette.com&emailPreferenceId=59&email=” + email, {
method: “POST”
}).then(res => {
console.log(“SUCCESSFUL POST”);
subscribeSuccess();
});

}

#nsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: #2076b3;

background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/pp5%20signup%203.png);
background-size: cover;

}

#nsltr-header {
color: #fff4f4;
}
#nsltr-body {
text-align: center;
color: #ffffff;
}
#nsltr-button {
margin-top: 5px;
}
#successnsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: green;
text-align: center;
color: white;
}

#successnsltr a {
color: white;
}

.hideblock {
display:none;
}

h6 a {
color: black;
text-decoration: none;
padding: 5px;
background-color: #bbccdd;
font-weight: 600;
}

@media only screen and (min-width: 768px) {
#nsltr {
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/pp5%20signup%203.png);
background-size: cover;
}
}

Featured Local Savings

“(I’m) showing that I can defend multiple positions, I can make open shots, and, given the opportunity, I can make plays for my team as well,” Reed said.

After a slow start, the Nuggets finished the first quarter on a 20-9 run and led by two to start the second. Reed and Forbes each hit three 3s in their first stint off the bench, and the Nuggets led by one at halftime. Utah continued to score inside in the third quarter and took a three-point lead to the fourth. Barton tied it late, but the Nuggets couldn’t take good enough care of the ball down the stretch.

Nikola Jokic did not play with toe soreness, but he did pick up the NBA’s Western Conference Player of the Month award for January. The All-Star starter averaged 26.6 points, 13.3 rebounds, 9 assists and 1.4 steals per game as the Nuggets went 11-5 to start 2022. He recorded seven triple-doubles in 16 games.

Aaron Gordon (hamstring) and DeMarcus Cousins (foot) also missed the game for Denver. Utah played without Rudy Gobert, Donovan Mitchell and others.

“Our guys competed,” Malone said. “Our guys played hard, just didn’t do enough in the end to get the win.”

A return to Ball Arena after a week and a half on the road is scheduled for Friday against the Pelicans.

4ed2023d-42a3-5c8d-a4f7-656755899119

View Original Article | Split View
Tags

PREV

PREVIOUS

Karl Dorrell, CU Buffs moving forward with new players, coaches in important offseason

Facebook Twitter WhatsApp SMS Email Print Copy article link Save For better or worse, this offseason for Colorado will be defined by personnel turnover, both from a player and coaching perspective. After a 4-8 season in Karl Dorrell’s second season, there are six new full-time assistants on staff and only 12 starters returning for next […]

NEXT

NEXT UP

Bryn Forbes' shoot-for-the-stars approach pays off despite Nuggets loss to Jazz

Facebook Twitter WhatsApp SMS Email Print Copy article link Save Perfection is an impossible standard, but the pursuit of the unattainable has been a big part of Bryn Forbes’ success. “I work hard enough on my game that I expect every shot to go in,” Forbes said after Denver’s 108-104 loss to the Jazz on […]