Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The value of the status code

Example

Code Block
languagejs
number statusCode = httpGetStatusCode();
if (statusCode>= 200 && statusCode < 300) {
	print("Successful response!");
}

...