Web-Related Terms Beginning with C
call()
call() is one of JavaScript's built-in methods that you can use to reassign a specific method from one object to a different one.
Call-After (JavaScript)
A call-after is a function A passed as an argument into a function B and invoked inside function B.
Callback (JavaScript)
A callback is a function A passed as an argument into a function B and invoked inside function B.
Calling Array (JS)
A calling array is an array on which you used methods like map()
, filter()
, or slice()
.
Calling String (JS)
A calling string is a string on which you used methods like replace()
or matchAll()
.
Capturing Group (RegExp)
A regular expression's capturing group operator ((...)
) groups zero or more patterns.
Caret (RegExp)
A regular expression's caret operator ([^abc]
) defines the set of characters you do not wish to find in a single character's position.
Chained Conditional Operator (JS)
A chained conditional operator is an alternate (shortcut) way of writing an if...else if...else
statement.
Chained Question Mark Operator (JS)
A chained question mark operator is an alternate (shortcut) way of writing an if...else if...else
statement.
Chained Ternary Operator (JS)
A chained ternary operator is an alternate (shortcut) way of writing an if...else if...else
statement.
Character
A character is a writable (or printable) mark.
Character Classes (RegExp)
Regular expression's character classes are operators used to specify the precise type of characters you wish to find in a specific string.
Character Set (RegExp)
A regular expression's character set ([abc]
) defines the set of characters you wish to find in a single character's position.
Chunk
A chunk refers to the modified section of a file.
A chunk consists of the modified line and its context, where context means some unaltered lines before and after the modified line.
Class Component
A class component is a plain JavaScript Class that extends a user-defined class to the built-in React.Component
class located inside the React library.
Code
Code is any language that computers can understand and process.
Code Block
A block is a pair of braces ({...}
) used to group multiple statements.
Command Line Interface (CLI)
A command line interface (CLI) is a computer's text interface allowing you to type commands for the computer to run.
Commercial API
Commercial APIs are public APIs available to the public on pay-as-you-go or subscription fee terms.
Composite API Release Policy
A composite API release policy allows publishing APIs to help unify multiple data or service APIs.
Computed Property Names
Computed Property Names refer to the name of a property that the computer derived by computing (evaluating) a bracketed expression.
concat()
JavaScript Array Method
concat() populates a new array with the concatenation of its calling array and its arguments.
concat()
JavaScript String Method
concat() creates a new string by concatenating its calling string and its arguments.
Concatenation
Concatenation means to join two or more things together. For instance, string concatenation implies the joining together of two or more strings.
Conditional Operator (JS)
A conditional operator is an alternate (shortcut) way of writing an if...else
statement.
Conditional Statement (JS)
A conditional statement is any code used to specify the prerequisites necessary for the computer to perform specific actions.
Configuration File (Webpack)
Webpack's configuration file is a JavaScript file that allows you to modify or extend webpack's default settings.
Content Management System
A Content Management System (CMS) is an application people use to build and manage websites without writing code.
Controlled Component (ReactJS)
A controlled component is a component whose form's data React controls exclusively.
Create React App
Create React App (CRA) is an official React package used to set up React projects easily without going through the troubles of configuring build tools like Webpack or Babel.
CSS
CSS (Cascading Style Sheets) is a styling language that styles elements of an HTML document.
CSS Attribute Selector
A CSS attribute selector selects an HTML element based on the element's attribute name or value.
CSS Basic Selector
A CSS basic selector selects an HTML element based on the element's name, id, or class.
CSS Combinator Selector
A CSS combinator selector selects one or more HTML elements based on their relationship with some specified HTML nodes.
CSS Layout
CSS layout refers to the arrangement of box models in relation to one another and the browser's viewport.
The eight (8) widely used page layout techniques for arranging CSS boxes on a webpage are:
- Normal flow
- Display property
- Flexbox
- Grid
- Float property
- Position property
- Table layout
- Multi-column layout
CSS Pseudo-Selector
A CSS pseudo-selector selects a specific part of an HTML element or selects an HTML element only when it is in a particular state.
CSS Ruleset
A CSS ruleset consists of an element selector and a properties declaration block.
CSS Selector
A CSS selector selects HTML elements. In other words, developers use CSS selectors in a stylesheet to select the HTML elements they which to style.
The four (4) types of CSS selectors are:
CSS Unit
A CSS Unit is the standard of measurement used in CSS to express the size of a specific element's property.