Codectionary / Developer documentation / Lua

Lua table.insert and remove

Lua reference for lua table.insert and remove.

Syntax

table.insert(tags, "cli")
table.remove(tags, 1)

Examples

Lua table.insert and remove example

A focused example you can adapt while practising.

table.insert(tags, "cli")
table.remove(tags, 1)

Best practices

  • Start with the smallest working example, then adapt it to your project.
  • Use the language’s standard library and idioms before introducing extra dependencies.

At a glance

Purpose
Lightweight scripting and embedding
File extension
.lua
Runs in
Lua interpreter or a host application
Usually used with
Host APIs and Lua modules

Specifications & further reading

Related Lua documentation