Skip to content

elewa-academy/12345-345

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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