The table:
table = { ["name"]="formula1", ["man"] ="formula2" }
How print or return “name” or “man”?
Note : print( table[“name”]) --> “formula1”. How to do the opposite without the need to create a table with the inverted equality?Is there any way?