Changing Styles Dynamically

Which method is used to retrieve a specific computed style property?
const styles = window.getComputedStyle(element);
console.log(styles.getPropertyValue('background-color'));
Next Question (9/20)