CramX Logo
Back to FlashcardsInformation Technology / Coffee Script for Framer by Tessa Thornton

Coffee Script for Framer by Tessa Thornton

Information Technology79 CardsCreated 8 months ago

This flashcard set introduces fundamental programming concepts such as strings, variables, concatenation, and naming conventions. It's ideal for beginners learning how to handle basic data types and syntax.

Report

Which character do we use for decimal numbers?

The point (not the comma)

Rate to track your progress ✦

Tap or swipe ↕ to flip
Swipe ←→Navigate
1/79

Key Terms

Term
Definition

Which character do we use for decimal numbers?

The point (not the comma)

How to insert a string

Strings come in quotation marks.

“This is a string”

How to concatenate strings?

Using a + sign: “My name is “ + “Tessa” # => “My name is Tessa

Which type of data is this: “40”

This is a string (because inside quotation marks)

“50” + “50”

=> “5050”

How to assign a variable?

Variables are assigned using the = operator.