elewa-academy / 12345-345

practice it here:

Home Page:https://elewa-academy.github.io/12345-345

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

12345 -> 345

In this example I'm trying to do something that looks like simple subtraction. But it isn't since I've constrained myself to using only primitives, native methods and type conversion.

Since subtraction is off limits, I had to think of another way to go from 12345 to 345. If I think of 12345 as a string, then it's no longer subtraction. It's just removing the first two letters.

So I take the strategy of mapping:

  1. Convert the argument to a more appropriate format (string)
  2. Carry out the transformation
  3. Map the result back into the correct format (number)

Index


Learning Objective

Language Features:

  • Number();
  • String();
  • "".replace(x, y);

TOP


Study Snippet

// {number, 12345} -> {number, 345}
Number(String(12345).replace("12", ""));
  //  {number, 12345}
  String(12345);
  //  {string, "12345"}
  "12345".replace("12", "");
  //  {string, "345"}
  Number("345");
  //  {number, 345}

TOP


Helpful Links

Alternative methods:

TOP



About

practice it here:

https://elewa-academy.github.io/12345-345

License:Other


Languages

Language:JavaScript 92.9%Language:HTML 4.0%Language:CSS 3.1%