--- # **************************************************************************** # this is template for problem html file. # please check all lines that have comment "NOTE:" and make your changes. # Please remove all "NOTE:" like comments from your final file. Don't forget remove this commet as well. # Pay attention: # - Format of the time is YYYY-MM-DD-hh-mm (no am/pm). So for problem created Desember,18 2015 at 5:25 pm. 2015-12-18-17-25 # - Date and time should be the same as it is in the name of the problem file (see fields "title", "permalink". # **************************************************************************** # NOTE: start of the file header. This is YAML format. Please look here ?????? to be familiar with it. pagerole: problem # NOTE: don't change this line layout: problem # NOTE: don't change this line title: Problem 2015-12-18-17-25 # NOTE: put actual date and time here. permalink: /javascript/problem/2015-12-18-17-25.html # NOTE: put actual date and time here. Google "permalink" to understand purpose of the field categories: javascript, variables # NOTE: "javascript," is mandatory - because this is JavaScript related problem. Second could be one of the ["variables", "general", "other"] header: | # NOTE: the field is using to show problem info in topic list. It contains question and optional question code. E.g. see http://webculum.org/javascript/variables-topic.html

Question: What would be value of x?

 var x = 100 / "10";
 
complexity: 2 # NOTE: from 1 to 10. 1 is the simplest. 10 is most complex. Read ?????? for details importance: 5 # NOTE: from 1 to 10. 1 is the least important. 10 is most important. Read ?????? for details author: docentmail # NOTE: put your ID here # NOTE: end of the YAML file header ---

Division to "Apple"

{{page.title}}

complexity: {{page.complexity}} ; importance: {{page.importance}}; author: {{page.author}}


Question: What would be value of x?

{% highlight js %} var x = 100 / "10"; {% endhighlight %}