JavaScript – Change Paragraph Text to Italic

To change paragraph text to italic using JavaScript, get the reference to the paragraph element, and assign element.style.fontStyle property with value of "italic".

Example

Conclusion

In this JavaScript Tutorial, we learned how to change text in a paragraph to italic using JavaScript.