From abef5c437956998172a003977b470118228b9d5e Mon Sep 17 00:00:00 2001 From: Brent Guffens Date: Wed, 17 Jan 2018 11:43:11 +0100 Subject: [PATCH] More language improvements --- 1-js/02-first-steps/07-operators/article.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/1-js/02-first-steps/07-operators/article.md b/1-js/02-first-steps/07-operators/article.md index 39c2eb52..138b6cfd 100644 --- a/1-js/02-first-steps/07-operators/article.md +++ b/1-js/02-first-steps/07-operators/article.md @@ -93,9 +93,9 @@ alert( +"" ); // 0 */!* ``` -It actually does the same as `Number(...)`, but shorter. +It actually does the same as `Number(...)`, but is shorter. -A need to convert string to number arises very often. For example, if we are getting values from HTML form fields, then they are usually strings. +A need to convert strings to numbers arises very often. For example, if we are getting values from HTML form fields, then they are usually strings. What if we want to sum them?