Skip to content

Instantly share code, notes, and snippets.

@redradist
Created September 12, 2021 12:11

Revisions

  1. redradist created this gist Sep 12, 2021.
    8 changes: 8 additions & 0 deletions string_number_coericion.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,8 @@
    let y = 8;

    ...

    //@ts-ignore
    y += "233"; // Ok from TypeScript compiler point of view

    ...