Check out example codes for "unity background camera". It will help you in understanding the concepts better.
Code Example 1
using UnityEngine;
using System.Collections;
public class Myclass: MonoBehaviour
{
public Color Red = Color.red;
public Camera cam;
void Start()
{
}
void Update()
{
cam.backgroundColor = Red;
}
}
Learn ReactJs, React Native from akashmittal.com