Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Hands-On Full Stack Development with Spring Boot 2 and React

You're reading from   Hands-On Full Stack Development with Spring Boot 2 and React Build modern and scalable full stack applications using Spring Framework 5 and React with Hooks

Arrow left icon
Product type Paperback
Published in May 2019
Publisher Packt
ISBN-13 9781838822361
Length 316 pages
Edition 2nd Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Juha Hinkula Juha Hinkula
Author Profile Icon Juha Hinkula
Juha Hinkula
Arrow right icon
View More author details
Toc

Table of Contents (22) Chapters Close

Preface 1. Section 1: Backend Programming with Spring Boot
2. Setting Up the Environment and Tools - Backend FREE CHAPTER 3. Dependency Injection 4. Using JPA to Create and Access a Database 5. Creating a RESTful Web Service with Spring Boot 6. Securing and Testing Your Backend 7. Section 2: Frontend Programming with React
8. Setting Up the Environment and Tools - Frontend 9. Getting Started with React 10. Consuming the REST API with React 11. Useful Third-Party Components for React 12. Section 3: Full Stack Development
13. Setting Up the Frontend for Our Spring Boot RESTful Web Service 14. Adding CRUD Functionalities 15. Styling the Frontend with React Material-UI 16. Testing Your Frontend 17. Securing Your Application 18. Deploying Your Application 19. Best Practices 20. Assessments 21. Other Books You May Enjoy

Basics of ES6

ES6 (short for ECMAScript 2015) was released in 2015, and it introduced a lot of new features. ECMAScript is a standardized scripting language, and JavaScript is one implementation of it. In this section, we will go through the most important features released in ES6 that we will be using in the following sections.

Understanding constants

Constants, or immutable variables, can be defined by using a const keyword, as shown in the following code. When using the const keyword, the variable content cannot be reassigned:

const PI = 3.14159;

The scope of const is block scoped, which is the same as the scope for let. This means that the const variable can only be used inside the block in which it is defined. In practice...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime