Skip to content
Advertisement

How can mixed number JSON inputs be converted to numbers using split() and reduce() in Node JS?

I am building a picture framing REST API calculator using Node JS. The code I’ve written for it is this:

JavaScript

Therefore, the input JSON POST request would be, for example:

JavaScript

The response would be: Width Cut = 3", Height Cut = 1 3/4"


The problem I’m running into is that I can’t seem to figure out how to allow for mixed numbers in my key/value pairs of my object.

I currently have to have a separate key/value pair for the integer, and a separate pair for the fraction as shown above, for example:

JavaScript

My goal is to reduce the number of key/value pairs by allowing mixed numbers as an input like this:

JavaScript

The piece of code in question:

JavaScript

…only allows for individual integers or individual fractions, but not a combined mixed number.

Can mixed number inputs in JSON be converted to numbers using split() and reduce() in Node JS with the code I’m using?

Advertisement

Answer

This problem has been resolved by using the correct split() and reduce() methods.

Reading examples from here: JavaScript reduce() Method and from here: JavaScript split() Method

I was able to fix my issue by finding:

JavaScript

And changing it to:

JavaScript

Therefore, the input JSON POST request would become:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement