From 1b80d3658eeb1e9c6bd3c43c69d5e87c0c6a9b75 Mon Sep 17 00:00:00 2001 From: Ravshan Samandarov Date: Wed, 20 Dec 2017 00:43:30 +0500 Subject: [PATCH] Update introducing-jsx.md (#443) --- content/docs/introducing-jsx.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/introducing-jsx.md b/content/docs/introducing-jsx.md index 7a8733bf..3d12828f 100644 --- a/content/docs/introducing-jsx.md +++ b/content/docs/introducing-jsx.md @@ -62,7 +62,7 @@ We split JSX over multiple lines for readability. While it isn't required, when ### JSX is an Expression Too -After compilation, JSX expressions become regular JavaScript objects. +After compilation, JSX expressions become regular JavaScript function calls and evaluate to JavaScript objects. This means that you can use JSX inside of `if` statements and `for` loops, assign it to variables, accept it as arguments, and return it from functions: