We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here is a piece of the answer in Project 'Conversion Tool'.
else if (from == 'kilograms') { unit[0] = n * 2.2; // lb unit[1] = n * 35.27; // oz }
I wonder whether it is neccessary for the answer to calculate the number 35.27. Maybe unit[1] = n / 0.45 * 16?
unit[1] = n / 0.45 * 16
Thanks.
The text was updated successfully, but these errors were encountered:
Um...What are you all doing, what laungue is this going to be an what is it for? I want to help
Sorry, something went wrong.
I was talking about Learnstreet page. It's a project of js. A month ago I was confused by the answer just as what I wrote:)
No branches or pull requests
Here is a piece of the answer in Project 'Conversion Tool'.
I wonder whether it is neccessary for the answer to calculate the number 35.27. Maybe
unit[1] = n / 0.45 * 16
?Thanks.
The text was updated successfully, but these errors were encountered: