Skip to content

Files

Latest commit

 

History

History
24 lines (15 loc) · 457 Bytes

SC2281.md

File metadata and controls

24 lines (15 loc) · 457 Bytes

Pattern: Use of $/${} on the left side of assignment

Issue: -

Description

Unlike Perl or PHP, $ is not used on the left-hand side of = when assigning to a variable.

Example of incorrect code:

$greeting="Hello World"
${greeting}="Hello World"

Example of correct code:

greeting="Hello World"

Further Reading