Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

339
Views
Cast a variable based on the data type of another variable

I would like to have a function which casts a variable based on its "reference" type variable. I guess the function would take two parameters cast(x, ref), where x is the variable to cast accordingly to the data type of ref. So for example:

let myVar = cast(3, "helloworld");
console.log(myVar); // "3"

let myNewVar = cast(myVar, 32423n);
console.log(myNewVar); // 3n

Right now, I've only managed to transform numbers to bigints if the ref is a bigint

const cast = (n, ref) => typeof ref === "number" ? n : BigInt(n)

It would be nice to cast a variable to the data type of another variable.

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

// Cast will attempt to force cast something (n) into the type of
// something else (ref)
const cast = (n, ref) => {
  switch(typeof(ref)) // All major types and how to convert them
  {
    case "boolean": return Boolean(n);
    case "number": return Number(n);
    case "bigint": return BigInt(n);
    case "string": return String(n);
    case "symbol": return Symbol(n);
    case "undefined": return undefined;
    default: return n; // If none of the above is the type, we return n
  }
}

// Example: 2 is an int, and the reference is a string, so we cast an int 
// to a string, this could be done with various types more complexly
let a = 2
let b = "hello"

a = cast(a, b)
console.log(a, typeof(a)) // 2, string
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!