Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Help please!!

Explorer ,
May 21, 2015 May 21, 2015

I wonder how it could make reading the code as follows:

"If the value is greater than X and less than X"

I tried using the following:

if (score> = 10 && <= 30)

But this way I used is giving error at the time of execution of the tests, could anyone help me?

TOPICS
ActionScript
207
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

LEGEND , May 22, 2015 May 22, 2015

"If the value is greater than X and less than X"  is an impossible scenario, but for what you show as an example the following would be a way to write it...

if (score >= 10 && score <= 30)

Translate
LEGEND ,
May 22, 2015 May 22, 2015
LATEST

"If the value is greater than X and less than X"  is an impossible scenario, but for what you show as an example the following would be a way to write it...

if (score >= 10 && score <= 30)

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines