Skip to content

cotrTypesDynamic

Explains the use of ‘Any’ for dynamic values

Aliases:

  • cotrTypesDynamic
  • typesDynamic
  • typesAny
  • dynamicType
  • anyType

cpp

std::any

csharp

dynamic

dart

dynamic

go

interface{}

haskell

-- Haskell is statically typed, but you can use 'Any' for dynamic values.

java

Object

javascript

// There is no specific syntax for declaring a variable with a dynamic type in JavaScript.

javascriptreact

// There is no specific syntax for declaring a variable with a dynamic type in JavaScript.

perl

# Perl is a dynamically typed language.

php

// PHP is a dynamically typed language.

powershell

Terminal window
# PowerShell is a dynamically typed language.

python

Any # Note: Python is dynamically typed. Use the Typing module to specify types.

r

# R is a dynamically typed language.

ruby

# Ruby is a dynamically typed language.

rust

dyn Any // There is no built-in Any type in Rust.

scala

Any

shellscript

Terminal window
# Bash is dynamically typed; variables can hold different types of values.

typescript

any

typescriptreact

any