type.string.append0.000001
Appends a value to a string.
Arguments
valuerequired
The value to append to the given string.Return Value
The string with given value appendedsomething went wrong :(
Appending one string to another
Setup
authorization=PROCAUTH
require "proc"
client = Proc.connect("PROCAUTH")
const Proc = require("@proc.dev/client");
const client = Proc.connect("PROCAUTH");
client.type.string.append.call(
"hello", value: "world"
)
client.type.string.append.call(
"hello", {value: "world"}
);
curl "https://proc.run/type/string/append?value=world" --silent \
--header "authorization: bearer $authorization" \
--header "content-type: application/json" \
--data '"hello"'
helloworld
Stuck? Want to chat about an idea? Join the community on Discord.