Using a string in a C# script in a .js

Hello everyone I have a C# script called “PauseMenuManager” where I have a string called: firstName
I want to use that string in .js I have tried different Things but I can’t access the C#. How to I make a var for script in .js? A example:

var playerManagerScript : GameObject;

ofc. that var is a gameObject. But How to I replace the GameObject with a script?

First: Why do you use different languages? Maybe you should stay with one, then there is no problem on passing variables between all of your scripts.
If you copied one of the scripts into your project and it is written in the wrong language try to understand whats happening and rewrite it in a Language you are experienced in.

Second: Accessing a script in JavaScript is as Easy as in c#

// JavaScript

var other : ScriptName = gameObject.GetComponent("ScriptName");

// C#

ScriptName other = gameObject.GetComponent<ScriptName>();

if you try to get a script attached to a gameObject you have to GetComponent(ScriptName) and not only the GameObject its attached too. Hope this helps, or i did not understand the main problem.