Skip to content

Files

Latest commit

 

History

History
21 lines (14 loc) · 397 Bytes

avoid_escaping_inner_quotes.md

File metadata and controls

21 lines (14 loc) · 397 Bytes

Pattern: Use of escaping inner quotes

Issue: -

Description

Avoid escaping inner quotes by converting surrounding quotes.

Example of incorrect code:

var s = 'It\'s not fun';

Example of correct code:

var s = "It's not fun";

Further Reading