Conclusion

Heads up... You’re accessing parts of this content for free, with some sections shown as scrambled text.

Heads up... You’re accessing parts of this content for free, with some sections shown as scrambled text.

Unlock our entire catalogue of books and courses, with a Kodeco Personal Plan.

Unlock now

Operators and operations are the building blocks of software development. Each data type has its own unique set of operations that can be performed on them using operators. Fundamental operators like +, -, *, /, = and % are widely used in programming. While some programming languages offer a limited set of operators, Kotlin provides a wide range of operators to work with.

In this chapter, you have learned about:

  • Common operators like +, -, *, /, =, and, %.
  • Increment and decrement operators: ++, –.
  • Augmented assignment operators: +=, -=, ….
  • The differences between logical and comparison operators.

In the next lesson, you’ll learn about a special type of data called null. Understanding null is a crucial skill in Kotlin programming. Equipped with the knowledge of null, you’ll avoid many common errors.

See forum comments
Download course materials from Github
Previous: Demo Next: Learn the Kotlin Language: Discover Operators