Benny is writing a program to design t-shirts. Which of the following correctly adds a new instance of style?

newStyle = "Style"
newStyle = Style()
newStyle: Style()
newStyle + Style()

Respuesta :

newStyle = Style()

This would work in Python

In JavaScript/TypeScript it is
newStyle = new Style()