JSX

Organization

JetSuiteX, a public charter flight service offering a private jet experience for commercial pricing.


First Mentioned

2/21/2026, 5:55:41 AM

Last Updated

2/21/2026, 5:59:06 AM

Research Retrieved

2/21/2026, 5:59:06 AM

Summary

JSX, legally known as JetSuiteX, Inc., is an American air carrier that operates a "hop-on jet service" providing point-to-point flights across the United States and Mexico. Founded in 2013, the company operates as a public charter operator, chartering 30-seat Embraer ERJ 135 and ERJ 145 aircraft from a subsidiary to resell seats to the public. This unique business model allows JSX to utilize fixed-base operator (FBO) terminals, enabling passengers to bypass standard TSA security checkpoints and enjoy a private jet-like experience. However, the company has become a focal point of regulatory debate, with legacy carriers such as American Airlines and Southwest Airlines lobbying the FAA to tighten Part 135 regulations. These competitors argue that JSX exploits regulatory loopholes to circumvent stricter pilot requirements and security protocols, a situation described by industry observers as an example of regulatory capture.

Referenced in 1 Document
Research Data
Extracted Attributes
  • Founded

    2013-01-01

  • Industry

    Aviation

  • Full Name

    JetSuiteX, Inc.

  • Headquarters

    5757 Haven Street, Paradise, Las Vegas, Nevada, United States

  • Fleet Composition

    Embraer ERJ 135 and ERJ 145 aircraft

  • Operational Regions

    Arizona, California, Colorado, Florida, Nevada, New Mexico, New York, Texas, Utah (USA); Baja California Sur (Mexico)

  • Service Description

    Hop-on jet service / Public charter operator

  • Regulatory Framework

    FAA Part 135 Regulation

  • Aircraft Configuration

    30 seats, removed overhead bins, in-row power

Timeline
  • JetSuiteX, Inc. (JSX) is founded as an American air carrier. (Source: Wikidata)

    2013-01-01

  • JSX is highlighted in a podcast discussion regarding regulatory capture and lobbying efforts by legacy airlines to shut down its operations. (Source: Document 0c408fae-3516-4cfd-b67f-0e6ab624be7d)

    2023-10-05

  • David Friedberg travels via JSX to attend a U2 concert at the MSG Sphere in Las Vegas. (Source: Document 0c408fae-3516-4cfd-b67f-0e6ab624be7d)

    2023-10-05

JSX (airline)

JetSuiteX, Inc. (commonly known as JSX) is an American air carrier in the United States and Mexico that describes itself as a "hop-on jet service" that operates point-to-point flights between and within Arizona, California, Colorado, Florida, Nevada, New Mexico, New York, Texas, and Utah in the United States and Baja California Sur in Mexico. For regulatory purposes, JSX is set up as public charter operator and does not directly operate aircraft. JSX charters a 30-seat Embraer regional jet operated by a subsidiary and then resells seats on that aircraft to the public. Because charter operators have lower TSA screening requirements for passengers, the arrangement allows JSX to utilize fixed-base operator terminals, offering a more private jet-like experience for their customers. JSX operates Embraer ERJ 135 and ERJ 145 aircraft, each retrofitted with 30 seats, removed overhead bins, and in-row power.

Web Search Results
  • JSX (airline) - Wikipedia

    JetSuiteX, Inc. (commonly known as JSX) is an American air carrier in the United States and Mexico that describes itself as a "hop-on jet service" that operates point-to-point flights between and within Arizona, California, Colorado, Florida, Nevada, New Mexico, New York "New York (state)"), Texas, and Utah in the United States and Baja California Sur in Mexico. [...] [edit&action=edit&section=3 "Edit section: Destinations")] JSX serves or has previously served the following destinations as of May 2025( [...] For regulatory purposes, JSX is set up as public charter operator and does not directly operate aircraft. JSX charters a 30-seat Embraer regional jet operated by a subsidiary and then resells seats on that aircraft to the public. Because charter operators have lower TSA screening requirements for passengers, the arrangement allows JSX to utilize fixed-base operator terminals, offering a more private jet-like experience for their customers. JSX operates Embraer ERJ 135 and ERJ 145 aircraft, each retrofitted with 30 seats, removed overhead bins, and in-row power. ## History [edit&action=edit&section=1 "Edit section: History")]

  • What Is JSX an why use it in ReactJS | by Shivam Jha - Medium

    In this blog post, we will explore some of the benefits and features of JSX, and how it can help us create dynamic and interactive user interfaces with ReactJS. We will also look at some real-life examples of JSX code and how it is transformed into regular JavaScript by a tool called Babel. ## How does JSX work? JSX is a syntax extension that looks like HTML, but it is actually JavaScript. When we write JSX code in our React components, we create React elements, which are plain JavaScript objects that describe what the UI should look like. These elements are then rendered to the DOM by React. [...] This code renders the following output to the browser: ## Get Shivam Jha’s stories in your inbox Join Medium for free to get updates from this writer. <h1>Hello Shivam</h1> ## Conclusion Basically, JSX is a syntax extension that allows us to write HTML-like code in ReactJS. JSX makes it easier to create and maintain React components, and it also enables us to use the full power of JavaScript expressions within our markup. JSX is not executed by the browser, but by Babel, which transforms it into regular JavaScript code. JSX follows some rules and conventions that ensure that our code is valid and consistent. JSX also supports custom components, which make our code more reusable and modular. [...] JSX is concise and readable: JSX allows us to write HTML-like syntax that is familiar and intuitive for web developers. It also reduces the amount of boilerplate code that we need to write for creating React elements. JSX is expressive and powerful: JSX lets us use any valid JavaScript expression inside curly braces `{ }`. This means that we can use variables, functions, loops, conditionals, and any other JavaScript features within our markup. This makes our code more dynamic and interactive. JSX is optimized for performance: JSX is not executed by the browser, but by Babel, which transforms it into efficient JavaScript code. This means that JSX does not add any runtime overhead to our application, and it can benefit from the optimizations and features of modern JavaScript engines.

  • Introducing JSX

    In the example below, we embed the result of calling a JavaScript function, `formatName(user)`, into an element. ``` function formatName(user){return. + ' ' +.;} const ={firstName: 'Harper', lastName: 'Perez'}; const =(<h1><h1<> Hello, {formatName(user)}! Hello, {formatName()}! h1> h1 >); ``` Try it on CodePen We split JSX over multiple lines for readability. While it isn’t required, when doing this, we also recommend wrapping it in parentheses to avoid the pitfalls of automatic semicolon insertion. ### JSX is an Expression Too 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: ``` function getGreeting(user){if(){ return <h1>Hello, {formatName(user)}!h1>; return<h1><h1<>Hello, {formatName()}!h1> h1 >;} return <h1>Hello, Stranger.h1>; return<h1><h1<>Hello, Stranger.h1> h1 >;} ``` ### Specifying Attributes with JSX You may use quotes to specify string literals as attributes: ``` const =<a href=" href =" = " "> link a> a >; ``` You may also use curly braces to embed a JavaScript expression in an attribute: ``` const =<img src={user.avatarUrl}><img< src ={user.avatarUrl} ={.}>img> img >; ``` [...] ### JSX Prevents Injection Attacks It is safe to embed user input in JSX: ``` const =.;// This is safe: const =<h1><h1<>{}h1> h1 >; ``` By default, React DOM escapes any values embedded in JSX before rendering them. Thus it ensures that you can never inject anything that’s not explicitly written in your application. Everything is converted to a string before being rendered. This helps prevent XSS (cross-site-scripting) attacks. ### JSX Represents Objects Babel compiles JSX down to `React.createElement()` calls. These two examples are identical: ``` const =(<h1 className="greeting"><h1< className ="greeting" = " "> Hello, world! h1> h1 >); ``` ``` const =. createElement('h1',{className: 'greeting'},'Hello, world!'); ```

  • Learn React: JSX Cheatsheet

    ### JSX className In JSX, you can’t use the word `class`! You have to use `className` instead. This is because JSX gets translated into JavaScript, and `class` is a reserved word in JavaScript. When JSX is rendered, JSX `className` attributes are automatically rendered as `class` attributes. ``` // When rendered, this JSX expression... const heading = <h1 className="large-heading">Codecademy</h1>; // ...will be rendered as this HTML <h1 class="large-heading">Codecademy</h1> ``` Copy to clipboard Copy to clipboard ### JSX and conditionals In JSX, `&&` is commonly used to render an element based on a boolean condition. `&&` works best in conditionals that will sometimes do an action, but other times do nothing at all.

  • React JSX - GeeksforGeeks

    ``` const element = Hello, world!; ``` # Hello, world! is a JSX element, similar to HTML, that represents a heading tag. JSX is converted into JavaScript behind the scenes, where React uses React.createElement() to turn the JSX code into actual HTML elements that the browser can understand. ## Working of JSX When React processes this JSX code, it converts it into JavaScript using Babel. This JavaScript code then creates real HTML elements in the browser’s DOM . which is how your web page gets displayed. > Note: Babel acts as a translator for your React code. It takes modern JavaScript (like JSX) that browsers don't understand directly. Finally, it converts it into older, compatible JavaScript so your application runs everywhere. ### JSX Transformation Process [...] ### 2. Using Attributes in JSX In JSX, attributes are specified similarly to HTML, but with some differences. Since JavaScript is used alongside JSX, certain attribute names are written in camelCase instead of the lowercase syntax used in HTML. JavaScript ```` const element = < img src = "" alt = "A description" />; ```` CamelCase for Attribute Names: In JSX, some HTML attributes are written in camelCase. For example, class becomes className, for becomes htmlFor, and style is an object. This is because class and for are reserved words in JavaScript. ### 3. Passing Children in JSX [...] ## Implementing JSX in Action JSX can be implemented in a React project to create dynamic and interactive UI components. Here are the steps to use JSX in a React application: Create a React App Write JSX in the Component: In the src/App.js file, write JSX to display a message: JavaScript ```` import React from "react"; function App() { const message = "Hello, JSX works!"; return < h1>{message}</h1>;} export default App; ```` Output: The JSX code # {message} will be transformed into JavaScript by Babel. Then react will then create a virtual DOM element for the

  • Instance Of
  • Inception Date
    1/1/2013
Location Data

JSX, 5757, Haven Street, Paradise, Las Vegas, Clark County, Nevada, 89119, United States

travel agency

Coordinates: 36.0869389, -115.1676132

Open Map