Hiya J, welcome to the forum. Friction… on spheres… is almost non-existent… because they don’t have enough surface area at the contact-point with the table. Your found solve is perfect… except…
Perhaps… create an array called balls.
var balls = [];
Each time you create a new ball… balls.push(newBall);
Then… for your within-renderloop velocity damper…
for (ball of balls) {
ball.physicsImpostor.setAngularVelocity(ball.physicsImpostor.getAngularVelocity().scale(.97));
}
That’s all. You don’t care if the ball is already fully stopped, do the “angular damping” on the stopped ball, too… it won’t care.
It removes an IF/THEN from your code.
(To be truthful, I don’t know if you will gain or lose performance by damping already-stopped balls. You might want to test that… maybe in a browser’s “profiling” system… in f12 dev tools area.)
ALSO… feel free to try the same exact code, except use LinearVelocity instead of AngularVelocity.
And maybe try a little bit of both… at the same time. Damp-down both… .99 or .98… or whatever. I think either method will work, and so will a combination.
Simulating that table felt… is not easy, eh? That fuzzy stuff has a mind of its own, sometimes. The pure math of the physics engines has a difficult time being “fuzzy”. 
Welcome again… good to have you with us! Good luck on your project! Write back as wanted, of course. Nice job on the found solution. Please mark thread as solved… if/when it becomes true. 
PS: I think… way down deep… in the bowels of the physics engine… there is also linear and angular damping on the rigidBody-class objects. To ref a “native” rigidbody within BJS…
mesh.physicsImpostor.physicsBody
. That will return an object that is not from BabylonJS-land. And I don’t gaurantee that you will find damping properties deep in the physics engine… but maybe. 